/freebsd/crypto/openssl/crypto/cmac/ |
H A D | cmac.c | 123 if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param)) in ossl_cmac_init() 140 if (!EVP_EncryptInit_ex2(ctx->cctx, cipher, NULL, NULL, param)) in ossl_cmac_init() 154 if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, key, zero_iv, param)) in ossl_cmac_init() 164 if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param)) in ossl_cmac_init()
|
/freebsd/crypto/openssl/demos/cipher/ |
H A D | aeskeywrap.c | 82 if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL)) in aes_wrap_encrypt()
|
H A D | ariacbc.c | 79 if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL)) in aria_cbc_encrypt()
|
H A D | aesgcm.c | 106 if (!EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) in aes_gcm_encrypt()
|
H A D | aesccm.c | 108 if (!EVP_EncryptInit_ex2(ctx, cipher, NULL, NULL, params)) in aes_ccm_encrypt()
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_gcm_siv_hw.c | 55 if (!EVP_EncryptInit_ex2(ctx->ecb_ctx, ecb, ctx->key_gen_key, NULL, NULL)) in aes_gcm_siv_initkey() 92 if (!EVP_EncryptInit_ex2(ctx->ecb_ctx, ecb, ctx->msg_enc_key, NULL, NULL)) in aes_gcm_siv_initkey()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 14 EVP_EncryptInit_ex2, 125 int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 381 =item EVP_EncryptInit_ex2() 398 This legacy function is similar to EVP_EncryptInit_ex2() when I<impl> is NULL. 517 EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2(), EVP_CipherUpdate() and 586 is set up for encryption or decryption with EVP_EncryptInit_ex2(), 1169 function such as EVP_EncryptInit_ex2(). 1387 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 1695 use EVP_EncryptInit_ex2(), EVP_EncryptFinal_ex(), EVP_DecryptInit_ex2(), 1747 if (!EVP_EncryptInit_ex2(ctx, EVP_idea_cbc(), key, iv, NULL)) { [all …]
|
/freebsd/crypto/openssl/ssl/quic/ |
H A D | quic_srtm.c | 129 if (!EVP_EncryptInit_ex2(srtm->blind_ctx, ecb, key, NULL, NULL)) in ossl_quic_srtm_new()
|
/freebsd/crypto/openssl/fuzz/ |
H A D | provider.c | 406 if (!EVP_EncryptInit_ex2(ctx, evp_cipher, key, iv, NULL)) { in do_evp_cipher()
|
/freebsd/crypto/openssl/test/ |
H A D | bio_dgram_test.c | 474 if (EVP_EncryptInit_ex2(ctx, cipher, (uint8_t *)key, (uint8_t *)counter, NULL) == 0) in random_data()
|
H A D | evp_extra_test.c | 6251 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) in aes_gcm_encrypt() 6388 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, rc4_key, NULL, params)) in rc4_encrypt()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_enc.c | 822 int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex2() function
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 788 __owur int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 4480 EVP_EncryptInit_ex2;
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | Makefile | 2053 MLINKS+= EVP_EncryptInit.3 EVP_EncryptInit_ex2.3
|
/freebsd/crypto/openssl/util/ |
H A D | libcrypto.num | 5330 EVP_EncryptInit_ex2 5458 3_0_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 1400 * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(), 1901 passed to the EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2() and
|