Symbol: EVP_DecryptUpdate
crypto/krb5/src/lib/crypto/openssl/enc_provider/aes.c
126
ret = EVP_DecryptUpdate(ctx, oblock, &olen, iblock, BLOCK_SIZE);
crypto/krb5/src/lib/crypto/openssl/enc_provider/camellia.c
125
ret = EVP_DecryptUpdate(ctx, oblock, &olen, iblock, BLOCK_SIZE);
crypto/krb5/src/lib/crypto/openssl/enc_provider/des3.c
158
ret = EVP_DecryptUpdate(ctx, oblock, &olen,
crypto/openssl/apps/speed.c
1124
if (!EVP_DecryptUpdate(ctx, NULL, &outl,
crypto/openssl/apps/speed.c
1132
if (!EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) {
crypto/openssl/apps/speed.c
1138
if (!EVP_DecryptUpdate(ctx, outbuf, &outl, buf, lengths[testnum])) {
crypto/openssl/apps/speed.c
966
rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
crypto/openssl/crypto/cms/cms_env.c
986
|| !EVP_DecryptUpdate(ctx, ukey, &ukeylen,
crypto/openssl/crypto/cms/cms_pwri.c
221
if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
crypto/openssl/crypto/cms/cms_pwri.c
228
|| !EVP_DecryptUpdate(ctx, tmp, &outl,
crypto/openssl/crypto/cms/cms_pwri.c
231
|| !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen)
crypto/openssl/crypto/cms/cms_pwri.c
236
|| !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen))
crypto/openssl/crypto/crmf/crmf_lib.c
838
|| !EVP_DecryptUpdate(evp_ctx, out, outlen,
crypto/openssl/crypto/evp/evp_enc.c
722
return EVP_DecryptUpdate(ctx, out, outl, in, inl);
crypto/openssl/crypto/hpke/hpke.c
177
if (EVP_DecryptUpdate(ctx, NULL, &len, aad, aadlen) != 1) {
crypto/openssl/crypto/hpke/hpke.c
182
if (EVP_DecryptUpdate(ctx, pt, &len, ct, ctlen - taglen) != 1) {
crypto/openssl/crypto/pem/pem_lib.c
487
ok = EVP_DecryptUpdate(ctx, data, &ilen, data, ilen);
crypto/openssl/crypto/pem/pvkfmt.c
909
if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen))
crypto/openssl/crypto/pem/pvkfmt.c
919
if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen))
crypto/openssl/demos/cipher/aesccm.c
199
if (!EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct)))
crypto/openssl/demos/cipher/aesccm.c
203
if (!EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata)))
crypto/openssl/demos/cipher/aesccm.c
207
rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct));
crypto/openssl/demos/cipher/aesgcm.c
182
if (!EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad)))
crypto/openssl/demos/cipher/aesgcm.c
186
if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct)))
crypto/openssl/demos/cipher/aeskeywrap.c
223
if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, wrap_ct, sizeof(wrap_ct)))
crypto/openssl/demos/cipher/ariacbc.c
152
if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, cbc_ct, sizeof(cbc_ct)))
crypto/openssl/include/openssl/evp.h
678
#define EVP_OpenUpdate(a, b, c, d, e) EVP_DecryptUpdate(a, b, c, d, e)
crypto/openssl/include/openssl/evp.h
797
__owur int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/ssl/quic/quic_port.c
1022
|| !EVP_DecryptUpdate(port->token_ctx, plaintext, &len, data,
crypto/openssl/ssl/t1_lib.c
3220
if (sdec == NULL || EVP_DecryptUpdate(ctx, sdec, &slen, p, (int)eticklen) <= 0) {
crypto/openssl/test/aesgcmtest.c
86
&& TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad,
crypto/openssl/test/aesgcmtest.c
89
&& TEST_true(EVP_DecryptUpdate(ctx, pt, &ptlen, ct,
crypto/openssl/test/destest.c
859
|| !TEST_true(EVP_DecryptUpdate(ctx, p_txt, &plen_upd,
crypto/openssl/test/evp_extra_test.c
4127
|| !TEST_true(EVP_DecryptUpdate(ctx, plaintext, &ptlen, ciphertext,
crypto/openssl/test/evp_extra_test.c
4133
|| !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp, NULL,
crypto/openssl/test/evp_extra_test.c
4136
|| !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp,
crypto/openssl/test/evp_extra_test.c
6362
&& !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen,
crypto/openssl/test/evp_extra_test.c
6364
|| !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen,
crypto/openssl/test/evp_extra_test.c
6487
|| !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen,
crypto/openssl/test/evp_extra_test.c
6579
if (!TEST_int_eq(EVP_DecryptUpdate(ctx, buffer, &outl, (unsigned char *)"test", -1), 0))
sbin/decryptcore/decryptcore.c
278
if (EVP_DecryptUpdate(ctx, buf, &olen, buf,
tests/sys/kern/ktls_test.c
508
if (EVP_DecryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tests/sys/kern/ktls_test.c
516
if (EVP_DecryptUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
1415
if (EVP_DecryptUpdate(ctx, NULL, &outl, (const u_char *)aad,
tools/tools/crypto/cryptocheck.c
1421
if (EVP_DecryptUpdate(ctx, (u_char *)output, &outl,