/third_party/openssl/demos/cipher/ |
H A D | aesccm.c | 200 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct))) in aes_ccm_decrypt() 204 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_decrypt() 208 rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct)); in aes_ccm_decrypt()
|
H A D | aesgcm.c | 182 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_decrypt() 186 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct))) in aes_gcm_decrypt()
|
H A D | aeskeywrap.c | 143 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, wrap_ct, sizeof(wrap_ct))) in aes_wrap_decrypt()
|
H A D | ariacbc.c | 141 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, cbc_ct, sizeof(cbc_ct))) in aria_cbc_decrypt()
|
/third_party/openssl/test/ |
H A D | aesgcmtest.c | 80 && TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, in do_decrypt() 82 && TEST_true(EVP_DecryptUpdate(ctx, pt, &ptlen, ct, in do_decrypt()
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
H A D | cms_pwri.c | 209 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, in kek_unwrap_key() 216 || !EVP_DecryptUpdate(ctx, tmp, &outl, in kek_unwrap_key() 219 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen) in kek_unwrap_key() 224 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen)) in kek_unwrap_key()
|
/third_party/openssl/crypto/cms/ |
H A D | cms_pwri.c | 209 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, in kek_unwrap_key() 216 || !EVP_DecryptUpdate(ctx, tmp, &outl, in kek_unwrap_key() 219 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen) in kek_unwrap_key() 224 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen)) in kek_unwrap_key()
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genaes.c | 376 n = EVP_DecryptUpdate(ctx->ctx, NULL, &olen, in, (int)len); in lws_genaes_crypt() 396 n = EVP_DecryptUpdate(ctx->ctx, out, &outl, in, (int)len); in lws_genaes_crypt()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
H A D | openssl.c | 565 !EVP_DecryptUpdate(actx, NULL, &len, NULL, (int)ciphertextlen)) || in ngtcp2_crypto_decrypt() 566 !EVP_DecryptUpdate(actx, NULL, &len, aad, (int)aadlen) || in ngtcp2_crypto_decrypt() 567 !EVP_DecryptUpdate(actx, dest, &len, ciphertext, (int)ciphertextlen) || in ngtcp2_crypto_decrypt()
|
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pvkfmt.c | 877 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key() 887 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key()
|
H A D | pem_lib.c | 420 int ilen = (int) len; /* EVP_DecryptUpdate etc. take int lengths */ in PEM_do_header() 458 ok = EVP_DecryptUpdate(ctx, data, &ilen, data, ilen); in PEM_do_header()
|
/third_party/openssl/crypto/pem/ |
H A D | pvkfmt.c | 877 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key() 887 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key()
|
H A D | pem_lib.c | 420 int ilen = (int) len; /* EVP_DecryptUpdate etc. take int lengths */ in PEM_do_header() 458 ok = EVP_DecryptUpdate(ctx, data, &ilen, data, ilen); in PEM_do_header()
|
/third_party/nghttp2/src/ |
H A D | shrpx_quic.cc | 250 if (!EVP_DecryptUpdate(ctx, dest, &len, src, SHRPX_QUIC_DECRYPTED_DCIDLEN) || in decrypt_quic_connection_id()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | evp_enc.c | 462 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 797 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() function
|
/third_party/openssl/crypto/evp/ |
H A D | evp_enc.c | 457 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 792 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() function
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_openssl.c | 402 if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) { in aes_decrypt() 403 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DecryptUpdate failed: %s", in aes_decrypt() 509 EVP_DecryptUpdate(ctx, data, &plen, data, data_len) == 1 && in aes_128_cbc_decrypt() 733 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt()
|
/third_party/node/deps/openssl/openssl/crypto/crmf/ |
H A D | crmf_lib.c | 693 || !EVP_DecryptUpdate(evp_ctx, outbuf, &outlen, in OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert()
|
/third_party/openssl/crypto/crmf/ |
H A D | crmf_lib.c | 693 || !EVP_DecryptUpdate(evp_ctx, outbuf, &outlen, in OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | evp.rs | 214 pub fn EVP_DecryptUpdate( in EVP_DecryptUpdate() functions
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | speed.c | 733 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 775 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm() 811 (void)EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead() 812 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
|
/third_party/openssl/apps/ |
H A D | speed.c | 733 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 775 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm() 811 (void)EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead() 812 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | evp.h | 505 # define EVP_OpenUpdate(a,b,c,d,e) EVP_DecryptUpdate(a,b,c,d,e) 599 /*__owur*/ int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
|
/third_party/libcoap/src/ |
H A D | coap_openssl.c | 3880 C(EVP_DecryptUpdate(ctx, NULL, &len, NULL, (int)data->length)); in coap_crypto_aead_decrypt() 3882 C(EVP_DecryptUpdate(ctx, NULL, &len, aad->s, (int)aad->length)); in coap_crypto_aead_decrypt() 3884 tmp = EVP_DecryptUpdate(ctx, result, &len, data->s, (int)data->length); in coap_crypto_aead_decrypt()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_openssl.c | 475 if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) { in aes_decrypt() 476 wpa_printf(MSG_ERROR, "OpenSSL: EVP_DecryptUpdate failed: %s", in aes_decrypt() 582 EVP_DecryptUpdate(ctx, data, &plen, data, data_len) == 1 && in aes_128_cbc_decrypt() 806 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt()
|