Home
last modified time | relevance | path

Searched refs:IVs (Results 1 – 13 of 13) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha1_hw.c140 u8 *IVs; in tls1_multi_block_encrypt() local
146 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt()
165 memcpy(ciph_d[0].out - 16, IVs, 16); in tls1_multi_block_encrypt()
166 memcpy(ciph_d[0].iv, IVs, 16); in tls1_multi_block_encrypt()
167 IVs += 16; in tls1_multi_block_encrypt()
172 memcpy(ciph_d[i].out - 16, IVs, 16); in tls1_multi_block_encrypt()
173 memcpy(ciph_d[i].iv, IVs, 16); in tls1_multi_block_encrypt()
174 IVs += 16; in tls1_multi_block_encrypt()
H A Dcipher_aes_cbc_hmac_sha256_hw.c144 u8 *IVs; in tls1_multi_block_encrypt() local
150 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt()
169 memcpy(ciph_d[0].out - 16, IVs, 16); in tls1_multi_block_encrypt()
170 memcpy(ciph_d[0].iv, IVs, 16); in tls1_multi_block_encrypt()
171 IVs += 16; in tls1_multi_block_encrypt()
176 memcpy(ciph_d[i].out - 16, IVs, 16); in tls1_multi_block_encrypt()
177 memcpy(ciph_d[i].iv, IVs, 16); in tls1_multi_block_encrypt()
178 IVs += 16; in tls1_multi_block_encrypt()
/freebsd/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c175 u8 *IVs; in tls1_1_multi_block_encrypt() local
181 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt()
200 memcpy(ciph_d[0].out - 16, IVs, 16); in tls1_1_multi_block_encrypt()
201 memcpy(ciph_d[0].iv, IVs, 16); in tls1_1_multi_block_encrypt()
202 IVs += 16; in tls1_1_multi_block_encrypt()
207 memcpy(ciph_d[i].out - 16, IVs, 16); in tls1_1_multi_block_encrypt()
208 memcpy(ciph_d[i].iv, IVs, 16); in tls1_1_multi_block_encrypt()
209 IVs += 16; in tls1_1_multi_block_encrypt()
H A De_aes_cbc_hmac_sha256.c169 u8 *IVs; in tls1_1_multi_block_encrypt() local
175 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt()
195 memcpy(ciph_d[0].out - 16, IVs, 16); in tls1_1_multi_block_encrypt()
196 memcpy(ciph_d[0].iv, IVs, 16); in tls1_1_multi_block_encrypt()
197 IVs += 16; in tls1_1_multi_block_encrypt()
202 memcpy(ciph_d[i].out - 16, IVs, 16); in tls1_1_multi_block_encrypt()
203 memcpy(ciph_d[i].iv, IVs, 16); in tls1_1_multi_block_encrypt()
204 IVs += 16; in tls1_1_multi_block_encrypt()
/freebsd/crypto/openssl/doc/designs/
H A Dhandling-some-max-defines.md87 longer IVs than just 16 bytes. There are many cases throughout the code
/freebsd/crypto/openssl/doc/man7/
H A DEVP_KDF-SSHKDF.pod12 It is defined in RFC 4253, section 7.2 and is used by SSH to derive IVs,
H A Dprovider-cipher.pod222 is an array of buffers with IVs, each I<ivlen> bytes long. The I<in> and I<out> are
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-tls.md177 Existing TLS record layers use TLS keys and IVs that are calculated using a
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Daes.txt593 3. For modes with IVs, the IV value is an input AND
/freebsd/crypto/openssl/doc/man3/
H A DEVP_EncryptInit.pod520 buffer pointers, containing IVs. The array size must be equal to I<numpipes>.
1063 AEAD IVs in TLSv1.2 consist of an implicit "fixed" part and an explicit part
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp7536 auto &IVs = in simplifyDuplicateSwitchArms() local
7539 IVs.insert({Phi->getIncomingBlock(IV), IV.get()}); in simplifyDuplicateSwitchArms()
/freebsd/crypto/openssl/
H A DNEWS.md668 * Mitigate incorrect resize handling for symmetric cipher keys and IVs.
H A DCHANGES.md17317 before application data chunks to avoid the use of known IVs
18798 all individual ciphers. If the cipher wants to handle IVs or keys
19069 instead of RAND_bytes for encryption IVs and salts.