Home
last modified time | relevance | path

Searched refs:EVP_EncryptInit_ex2 (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/crypto/cmac/
H A Dcmac.c123 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 Daeskeywrap.c82 if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL)) in aes_wrap_encrypt()
H A Dariacbc.c79 if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL)) in aria_cbc_encrypt()
H A Daesgcm.c106 if (!EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) in aes_gcm_encrypt()
H A Daesccm.c108 if (!EVP_EncryptInit_ex2(ctx, cipher, NULL, NULL, params)) in aes_ccm_encrypt()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_gcm_siv_hw.c55 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 DEVP_EncryptInit.pod14 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 Dquic_srtm.c129 if (!EVP_EncryptInit_ex2(srtm->blind_ctx, ecb, key, NULL, NULL)) in ossl_quic_srtm_new()
/freebsd/crypto/openssl/fuzz/
H A Dprovider.c406 if (!EVP_EncryptInit_ex2(ctx, evp_cipher, key, iv, NULL)) { in do_evp_cipher()
/freebsd/crypto/openssl/test/
H A Dbio_dgram_test.c474 if (EVP_EncryptInit_ex2(ctx, cipher, (uint8_t *)key, (uint8_t *)counter, NULL) == 0) in random_data()
H A Devp_extra_test.c6251 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 Devp_enc.c822 int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex2() function
/freebsd/crypto/openssl/include/openssl/
H A Devp.h788 __owur int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
/freebsd/secure/lib/libcrypto/
H A DVersion.map4480 EVP_EncryptInit_ex2;
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile2053 MLINKS+= EVP_EncryptInit.3 EVP_EncryptInit_ex2.3
/freebsd/crypto/openssl/util/
H A Dlibcrypto.num5330 EVP_EncryptInit_ex2 5458 3_0_0 EXIST::FUNCTION:
/freebsd/crypto/openssl/
H A DCHANGES.md1400 * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(),
1901 passed to the EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2() and