Symbol: EVP_PKEY_CTX_is_a
crypto/openssl/apps/req.c
1665
if (keylen == -1 && (EVP_PKEY_CTX_is_a(gctx, "RSA") || EVP_PKEY_CTX_is_a(gctx, "RSA-PSS")))
crypto/openssl/apps/req.c
685
&& (EVP_PKEY_CTX_is_a(genctx, "RSA")
crypto/openssl/apps/req.c
686
|| EVP_PKEY_CTX_is_a(genctx, "RSA-PSS")
crypto/openssl/apps/req.c
687
|| EVP_PKEY_CTX_is_a(genctx, "DSA"))) {
crypto/openssl/apps/req.c
694
&& (EVP_PKEY_CTX_is_a(genctx, "RSA")
crypto/openssl/apps/req.c
695
|| EVP_PKEY_CTX_is_a(genctx, "RSA-PSS")))
crypto/openssl/apps/req.c
702
if (EVP_PKEY_CTX_is_a(genctx, "DSA")
crypto/openssl/crypto/evp/signature.c
634
if (EVP_PKEY_CTX_is_a(ctx, *keytypes))
crypto/openssl/crypto/rsa/rsa_lib.c
1017
if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
crypto/openssl/crypto/rsa/rsa_lib.c
1018
&& !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
crypto/openssl/crypto/rsa/rsa_lib.c
1022
if (!EVP_PKEY_CTX_is_a(ctx, evp_pkey_type2name(keytype)))
crypto/openssl/crypto/rsa/rsa_lib.c
1080
if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
crypto/openssl/crypto/rsa/rsa_lib.c
1110
if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
crypto/openssl/crypto/rsa/rsa_lib.c
1190
if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
crypto/openssl/crypto/rsa/rsa_lib.c
1223
if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
crypto/openssl/crypto/rsa/rsa_lib.c
1289
if (!EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
crypto/openssl/crypto/rsa/rsa_lib.c
1311
if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
crypto/openssl/crypto/rsa/rsa_lib.c
1312
&& !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
crypto/openssl/crypto/rsa/rsa_lib.c
1371
if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
crypto/openssl/crypto/rsa/rsa_lib.c
1372
&& !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
crypto/openssl/crypto/rsa/rsa_lib.c
977
if (!EVP_PKEY_CTX_is_a(ctx, "RSA")
crypto/openssl/crypto/rsa/rsa_lib.c
978
&& !EVP_PKEY_CTX_is_a(ctx, "RSA-PSS"))
crypto/openssl/crypto/rsa/rsa_lib.c
982
if (!EVP_PKEY_CTX_is_a(ctx, evp_pkey_type2name(keytype)))
crypto/openssl/include/openssl/evp.h
1864
int EVP_PKEY_CTX_is_a(EVP_PKEY_CTX *ctx, const char *keytype);