| /freebsd/crypto/openssl/providers/implementations/ciphers/ |
| H A D | cipher_aes_cbc_hmac_sha1_hw.c | 140 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 D | cipher_aes_cbc_hmac_sha256_hw.c | 144 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 D | e_aes_cbc_hmac_sha1.c | 175 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 D | e_aes_cbc_hmac_sha256.c | 169 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 D | handling-some-max-defines.md | 87 longer IVs than just 16 bytes. There are many cases throughout the code
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_KDF-SSHKDF.pod | 12 It is defined in RFC 4253, section 7.2 and is used by SSH to derive IVs,
|
| H A D | provider-cipher.pod | 222 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 D | quic-tls.md | 177 Existing TLS record layers use TLS keys and IVs that are calculated using a
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | aes.txt | 593 3. For modes with IVs, the IV value is an input AND
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_EncryptInit.pod | 520 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 D | SimplifyCFG.cpp | 7536 auto &IVs = in simplifyDuplicateSwitchArms() local 7539 IVs.insert({Phi->getIncomingBlock(IV), IV.get()}); in simplifyDuplicateSwitchArms()
|
| /freebsd/crypto/openssl/ |
| H A D | NEWS.md | 668 * Mitigate incorrect resize handling for symmetric cipher keys and IVs.
|
| H A D | CHANGES.md | 17317 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.
|