Symbol: EVP_PKEY_decrypt
crypto/openssl/apps/pkeyutl.c
838
rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
crypto/openssl/apps/rsautl.c
280
&& EVP_PKEY_decrypt(ctx, rsa_out, &rsa_outlen, rsa_in, rsa_inlen) > 0;
crypto/openssl/apps/speed.c
1225
ret = EVP_PKEY_decrypt(rsa_decrypt_ctx[testnum], buf, &rsa_num, buf2, tempargs->encsize);
crypto/openssl/apps/speed.c
3409
|| EVP_PKEY_decrypt(loopargs[i].rsa_decrypt_ctx[testnum],
crypto/openssl/crypto/crmf/crmf_lib.c
806
if (EVP_PKEY_decrypt(pkctx, NULL, &eksize,
crypto/openssl/crypto/crmf/crmf_lib.c
811
retval = EVP_PKEY_decrypt(pkctx, ek, &eksize, encKey->data, encKey->length);
crypto/openssl/crypto/evp/asymcipher.c
334
if (EVP_PKEY_decrypt(ctx, NULL, outlenp, in, inlen) <= 0
crypto/openssl/crypto/evp/asymcipher.c
337
if (EVP_PKEY_decrypt(ctx, *outp, outlenp, in, inlen) <= 0
crypto/openssl/crypto/evp/p_open.c
42
|| EVP_PKEY_decrypt(pctx, NULL, &keylen, ek, ekl) <= 0)
crypto/openssl/crypto/evp/p_open.c
48
if (EVP_PKEY_decrypt(pctx, key, &keylen, ek, ekl) <= 0)
crypto/openssl/demos/encrypt/rsa_encrypt.c
184
if (EVP_PKEY_decrypt(ctx, NULL, &buf_len, in, in_len) <= 0) {
crypto/openssl/demos/encrypt/rsa_encrypt.c
193
if (EVP_PKEY_decrypt(ctx, buf, &buf_len, in, in_len) <= 0) {
crypto/openssl/include/openssl/evp.h
2020
int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx,
crypto/openssl/providers/fips/self_test_kats.c
877
if (EVP_PKEY_decrypt(encctx, out, &outlen,
crypto/openssl/ssl/statem/statem_srvr.c
3062
|| EVP_PKEY_decrypt(ctx, rsa_decrypt, &outlen,
crypto/openssl/ssl/statem/statem_srvr.c
3315
if (EVP_PKEY_decrypt(pkey_ctx, premaster_secret, &outlen, start,
crypto/openssl/ssl/statem/statem_srvr.c
3401
if (EVP_PKEY_decrypt(pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
crypto/openssl/test/acvp_test.c
1531
if (EVP_PKEY_decrypt(ctx, pt, &pt_len, tst->ct, tst->ct_len) <= 0)
crypto/openssl/test/evp_extra_test.c
2737
if (!TEST_int_gt(EVP_PKEY_decrypt(cctx, plaintext, &ptext_len, ciphertext,
crypto/openssl/test/evp_extra_test.c
4005
|| !TEST_int_gt(EVP_PKEY_decrypt(pctx, pbuf, &plen, cbuf, clen), 0)
crypto/openssl/test/evp_extra_test.c
4007
|| !TEST_int_gt(EVP_PKEY_decrypt(pctx, pbuf, &plen, cbuf, clen), 0)
crypto/openssl/test/evp_test.c
2908
EVP_PKEY_decrypt);
crypto/openssl/test/threadstest.c
958
|| !TEST_int_gt(EVP_PKEY_decrypt(ctx, ptbuf, &ptlen, ctbuf, ctlen),