Searched refs:EVP_EncryptInit_ex2 (Results 1 – 15 of 15) sorted by relevance
/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()
|
/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()
|
/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()
|
/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 14 EVP_EncryptInit_ex2, 124 int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 377 =item EVP_EncryptInit_ex2() 394 This legacy function is similar to EVP_EncryptInit_ex2() when I<impl> is NULL. 508 EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2(), EVP_CipherUpdate() and 577 is set up for encryption or decryption with EVP_EncryptInit_ex2(), 1156 function such as EVP_EncryptInit_ex2(). 1374 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 1682 use EVP_EncryptInit_ex2(), EVP_EncryptFinal_ex(), EVP_DecryptInit_ex2(), 1734 if (!EVP_EncryptInit_ex2(ctx, EVP_idea_cbc(), key, iv, NULL)) { [all …]
|
/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()
|
/openssl/fuzz/ |
H A D | provider.c | 406 if (!EVP_EncryptInit_ex2(ctx, evp_cipher, key, iv, NULL)) { in do_evp_cipher()
|
/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 | 5673 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) in aes_gcm_encrypt() 5810 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, rc4_key, NULL, params)) in rc4_encrypt()
|
/openssl/crypto/evp/ |
H A D | evp_enc.c | 643 int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex2() function
|
/openssl/include/openssl/ |
H A D | evp.h | 772 __owur int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/openssl/util/ |
H A D | libcrypto.num | 5330 EVP_EncryptInit_ex2 5458 3_0_0 EXIST::FUNCTION:
|
/openssl/ |
H A D | CHANGES.md | 1137 * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(), 1638 passed to the EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2() and
|
Completed in 173 milliseconds