Home
last modified time | relevance | path

Searched refs:EVP_DecryptInit_ex (Results 1 - 25 of 32) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dp_open.c29 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 Devp_enc.c507 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex() function
/third_party/openssl/crypto/evp/
H A Dp_open.c29 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 Devp_enc.c502 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex() function
/third_party/openssl/test/
H A Daesgcmtest.c76 && 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()
/third_party/libwebsockets/lib/tls/openssl/
H A Dlws-genaes.c244 n = EVP_DecryptInit_ex(ctx->ctx, ctx->cipher, ctx->engine, in lws_genaes_create()
349 n = EVP_DecryptInit_ex(ctx->ctx, NULL, NULL, in lws_genaes_crypt()
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/
H A Dopenssl.c274 if (!EVP_DecryptInit_ex(actx, cipher, NULL, NULL, NULL) || in ngtcp2_crypto_aead_ctx_decrypt_init()
283 !EVP_DecryptInit_ex(actx, NULL, NULL, key, NULL)) { in ngtcp2_crypto_aead_ctx_decrypt_init()
557 if (!EVP_DecryptInit_ex(actx, NULL, NULL, NULL, nonce) || in ngtcp2_crypto_decrypt()
/third_party/openssl/demos/cipher/
H A Daesccm.c196 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce)) in aes_ccm_decrypt()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dcipher_ctx.rs138 #[corresponds(EVP_DecryptInit_ex)]
145 self.cipher_init(type_, key, iv, ffi::EVP_DecryptInit_ex) in decrypt_init()
/third_party/node/deps/openssl/openssl/crypto/pem/
H A Dpvkfmt.c875 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 Dpem_lib.c456 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0])); in PEM_do_header()
/third_party/openssl/crypto/pem/
H A Dpvkfmt.c875 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 Dpem_lib.c456 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0])); in PEM_do_header()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dcrypto_openssl.c389 if (EVP_DecryptInit_ex(ctx, type, NULL, key, NULL) != 1) { in aes_decrypt_init()
507 if (EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv) == 1 && in aes_128_cbc_decrypt()
704 !EVP_DecryptInit_ex(ctx->dec, cipher, NULL, NULL, NULL) || in crypto_cipher_init()
706 !EVP_DecryptInit_ex(ctx->dec, NULL, NULL, key, iv)) { in crypto_cipher_init()
/third_party/nghttp2/src/
H A Dshrpx_quic.cc242 if (!EVP_DecryptInit_ex(ctx, EVP_aes_128_ecb(), nullptr, key, nullptr)) { in decrypt_quic_connection_id()
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_pwri.c222 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL) in kek_unwrap_key()
H A Dcms_env.c963 if (!EVP_DecryptInit_ex(ctx, cipher, NULL, kekri->key, NULL) in cms_RecipientInfo_kekri_decrypt()
/third_party/openssl/crypto/cms/
H A Dcms_pwri.c222 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL) in kek_unwrap_key()
H A Dcms_env.c944 if (!EVP_DecryptInit_ex(ctx, cipher, NULL, kekri->key, NULL) in cms_RecipientInfo_kekri_decrypt()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Devp.rs207 pub fn EVP_DecryptInit_ex( in EVP_DecryptInit_ex() functions
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto_openssl.c462 if (EVP_DecryptInit_ex(ctx, type, NULL, key, NULL) != 1) { in aes_decrypt_init()
580 if (EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv) == 1 && in aes_128_cbc_decrypt()
776 !EVP_DecryptInit_ex(ctx->dec, cipher, NULL, NULL, NULL) || in crypto_cipher_init()
779 !EVP_DecryptInit_ex(ctx->dec, NULL, NULL, key, iv)) { in crypto_cipher_init()
/third_party/node/src/crypto/
H A Dcrypto_context.cc1256 EVP_DecryptInit_ex(ectx, in TicketKeyCallback()
1295 if (EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), nullptr, sc->ticket_key_aes_, in TicketCompatibilityCallback()
/third_party/node/deps/openssl/openssl/apps/
H A Dspeed.c773 (void)EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, iv); in EVP_Update_loop_ccm()
808 (void)EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, iv); in EVP_Update_loop_aead()
/third_party/libcoap/src/
H A Dcoap_openssl.c3870 C(EVP_DecryptInit_ex(ctx, cipher, NULL, NULL, NULL)); in coap_crypto_aead_decrypt()
3878 C(EVP_DecryptInit_ex(ctx, NULL, NULL, ccm->key.s, ccm->nonce)); in coap_crypto_aead_decrypt()
/third_party/openssl/apps/
H A Dspeed.c773 (void)EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, iv); in EVP_Update_loop_ccm()
808 (void)EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, iv); in EVP_Update_loop_aead()

Completed in 44 milliseconds

12