/freebsd/crypto/openssl/crypto/evp/ |
H A D | p_open.c | 29 if (!EVP_DecryptInit_ex(ctx, type, NULL, NULL, NULL)) in EVP_OpenInit() 54 || !EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv)) in EVP_OpenInit() 70 i = EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL); in EVP_OpenFinal()
|
H A D | evp_enc.c | 507 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex() function
|
/freebsd/crypto/openssl/test/ |
H A D | aesgcmtest.c | 76 && TEST_true(EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, in do_decrypt() 78 && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0) in do_decrypt()
|
/freebsd/sbin/decryptcore/ |
H A D | decryptcore.c | 260 EVP_DecryptInit_ex(ctx, cipher, NULL, key, chachaiv); in decrypt() 262 EVP_DecryptInit_ex(ctx, cipher, NULL, key, kdk->kdk_iv); in decrypt()
|
/freebsd/crypto/openssl/demos/cipher/ |
H A D | aesccm.c | 196 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce)) in aes_ccm_decrypt()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_CTX_set_tlsext_ticket_key_cb.pod | 78 I<iv>. using a function like L<EVP_DecryptInit_ex(3)>. The key material and 211 if (EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key->aes_key,
|
H A D | EVP_aes_128_gcm.pod | 161 The I<iv> parameter to L<EVP_EncryptInit_ex(3)> or L<EVP_DecryptInit_ex(3)> is
|
H A D | EVP_CIPHER_meth_new.pod | 194 EVP_DecryptInit(), EVP_DecryptInit_ex().
|
H A D | EVP_EncryptInit.pod | 15 EVP_DecryptInit_ex, 122 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 398 =item EVP_DecryptInit_ex2(), EVP_DecryptInit_ex(), EVP_DecryptUpdate() 426 Behave in a similar way to EVP_EncryptInit_ex(), EVP_DecryptInit_ex() and 1486 EVP_EncryptFinal(), EVP_DecryptInit(), EVP_DecryptInit_ex(),
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_pwri.c | 222 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL) in kek_unwrap_key()
|
H A D | cms_env.c | 954 if (!EVP_DecryptInit_ex(ctx, cipher, NULL, kekri->key, NULL) in cms_RecipientInfo_kekri_decrypt()
|
/freebsd/crypto/openssl/crypto/pem/ |
H A D | pvkfmt.c | 875 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key() 885 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key()
|
H A D | pem_lib.c | 456 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0])); in PEM_do_header()
|
/freebsd/contrib/tcpdump/ |
H A D | cmakeconfig.h.in | 39 /* Define to 1 if you have the `EVP_DecryptInit_ex' function. */
|
H A D | config.h.in | 42 /* Define to 1 if you have the `EVP_DecryptInit_ex' function. */
|
H A D | print-esp.c | 159 return EVP_DecryptInit_ex(ctx, cipher, NULL, key, iv); in set_cipher_parameters()
|
H A D | configure.ac | 1216 # 2) do we have EVP_DecryptInit_ex()? 1226 AC_CHECK_FUNCS(EVP_CIPHER_CTX_new EVP_DecryptInit_ex)
|
H A D | CMakeLists.txt | 991 # 2) do we have EVP_DecryptInit_ex()? 1000 check_function_exists(EVP_DecryptInit_ex HAVE_EVP_DECRYPTINIT_EX)
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | crypto_openssl.c | 536 if (EVP_DecryptInit_ex(ctx, type, NULL, key, NULL) != 1 || in aes_decrypt_init() 658 if (EVP_DecryptInit_ex(ctx, type, NULL, kek, NULL) == 1 && in aes_unwrap() 727 if (EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv) == 1 && in aes_128_cbc_decrypt() 923 !EVP_DecryptInit_ex(ctx->dec, cipher, NULL, NULL, NULL) || in crypto_cipher_init() 926 !EVP_DecryptInit_ex(ctx->dec, NULL, NULL, key, iv)) { in crypto_cipher_init() 5275 EVP_DecryptInit_ex(cctx, ctx->cipher, NULL, ctx->key, in hpke_aead_open()
|
/freebsd/contrib/unbound/util/ |
H A D | net_help.c | 1812 if (EVP_DecryptInit_ex(evp_sctx, cipher, NULL, key->aes_key, iv) != 1) { in tls_session_ticket_key_cb()
|
/freebsd/tools/tools/crypto/ |
H A D | cryptocheck.c | 1404 if (EVP_DecryptInit_ex(ctx, cipher, NULL, (const u_char *)key, in openssl_aead_decrypt()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 770 /*__owur*/ int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 1465 EVP_DecryptInit_ex;
|
/freebsd/crypto/openssl/ssl/ |
H A D | t1_lib.c | 1903 || EVP_DecryptInit_ex(ctx, aes256cbc, NULL, in tls_decrypt_ticket()
|
/freebsd/tests/sys/kern/ |
H A D | ktls_test.c | 499 if (EVP_DecryptInit_ex(ctx, cipher, NULL, (const u_char *)key, in aead_decrypt() 501 warnx("EVP_DecryptInit_ex failed: %s", in aead_decrypt()
|