Home
last modified time | relevance | path

Searched refs:encbuf (Results 1 – 25 of 252) sorted by relevance

1234567891011

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/rlp/
H A Dencode.go81 if outer, ok := w.(*encbuf); ok {
86 eb := encbufPool.Get().(*encbuf)
98 eb := encbufPool.Get().(*encbuf)
113 eb := encbufPool.Get().(*encbuf)
121 type encbuf struct { struct
165 func (w *encbuf) reset() { argument
211 func (w *encbuf) list() *listhead { argument
226 func (w *encbuf) size() int { argument
230 func (w *encbuf) toBytes() []byte { argument
552 var nilfunc func(*encbuf) error
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/github.com/prometheus/tsdb/
H A Dencoding_helpers.go28 type encbuf struct { struct
33 func (e *encbuf) reset() { e.b = e.b[:0] } argument
34 func (e *encbuf) get() []byte { return e.b } argument
35 func (e *encbuf) len() int { return len(e.b) } argument
39 func (e *encbuf) putByte(c byte) { e.b = append(e.b, c) } argument
47 func (e *encbuf) putBE32(x uint32) { argument
52 func (e *encbuf) putBE64(x uint64) { argument
57 func (e *encbuf) putUvarint64(x uint64) { argument
62 func (e *encbuf) putVarint64(x int64) { argument
68 func (e *encbuf) putUvarintStr(s string) { argument
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/vendor/github.com/prometheus/tsdb/index/
H A Dencoding_helpers.go24 type encbuf struct { struct
29 func (e *encbuf) reset() { e.b = e.b[:0] } argument
30 func (e *encbuf) get() []byte { return e.b } argument
31 func (e *encbuf) len() int { return len(e.b) } argument
35 func (e *encbuf) putByte(c byte) { e.b = append(e.b, c) } argument
43 func (e *encbuf) putBE32(x uint32) { argument
48 func (e *encbuf) putBE64(x uint64) { argument
53 func (e *encbuf) putUvarint64(x uint64) { argument
58 func (e *encbuf) putVarint64(x int64) { argument
64 func (e *encbuf) putUvarintStr(s string) { argument
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/tsdb/
H A Dencoding_helpers.go28 type encbuf struct { struct
33 func (e *encbuf) reset() { e.b = e.b[:0] } argument
34 func (e *encbuf) get() []byte { return e.b } argument
35 func (e *encbuf) len() int { return len(e.b) } argument
39 func (e *encbuf) putByte(c byte) { e.b = append(e.b, c) } argument
47 func (e *encbuf) putBE32(x uint32) { argument
52 func (e *encbuf) putBE64(x uint64) { argument
57 func (e *encbuf) putUvarint64(x uint64) { argument
62 func (e *encbuf) putVarint64(x int64) { argument
68 func (e *encbuf) putUvarintStr(s string) { argument
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/tsdb/index/
H A Dencoding_helpers.go24 type encbuf struct { struct
29 func (e *encbuf) reset() { e.b = e.b[:0] } argument
30 func (e *encbuf) get() []byte { return e.b } argument
31 func (e *encbuf) len() int { return len(e.b) } argument
35 func (e *encbuf) putByte(c byte) { e.b = append(e.b, c) } argument
43 func (e *encbuf) putBE32(x uint32) { argument
48 func (e *encbuf) putBE64(x uint64) { argument
53 func (e *encbuf) putUvarint64(x uint64) { argument
58 func (e *encbuf) putVarint64(x int64) { argument
64 func (e *encbuf) putUvarintStr(s string) { argument
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/rlp/
H A Dencode.go54 if outer, ok := w.(*encbuf); ok {
59 eb := encbufPool.Get().(*encbuf)
71 eb := encbufPool.Get().(*encbuf)
86 eb := encbufPool.Get().(*encbuf)
126 type encbuf struct { struct
138 func (w *encbuf) reset() { argument
179 func (w *encbuf) encodeUint(i uint64) { argument
195 func (w *encbuf) list() int { argument
200 func (w *encbuf) listEnd(index int) { argument
210 func (w *encbuf) size() int { argument
[all …]
/dports/databases/postgresql96-server/postgresql-9.6.24/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql96-plpython/postgresql-9.6.24/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-docs/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-plperl/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-server/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-client/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-pltcl/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-plpython/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql10-contrib/postgresql-10.19/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-contrib/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-docs/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-plperl/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK];
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in raw_segments()
112 ctx->encbuf[i] = *data++;
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i];
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in zdebug_section_by_name()
171 ctx->encbuf[i] = *data++;
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i];
187 ctx->encbuf[i] = *data++;
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in is_64()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in kind()
[all …]
/dports/databases/postgresql11-client/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-plpython/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-server/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql12-contrib/postgresql-12.9/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql12-client/postgresql-12.9/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]
/dports/databases/postgresql11-pltcl/postgresql-11.14/contrib/pgcrypto/
H A Dpgp-cfb.c48 uint8 encbuf[PGP_MAX_BLOCK]; member
100 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_normal()
112 ctx->encbuf[i] = *data++; in mix_decrypt_normal()
113 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_normal()
152 *dst++ = ctx->encbuf[i] = ctx->fre[i] ^ (*data++); in mix_encrypt_resync()
171 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
172 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
187 ctx->encbuf[i] = *data++; in mix_decrypt_resync()
188 *dst++ = ctx->fre[i] ^ ctx->encbuf[i]; in mix_decrypt_resync()
217 memcpy(ctx->fr, ctx->encbuf, ctx->block_size); in cfb_process()
[all …]

1234567891011