HomeSort by relevance Sort by last modified time
    Searched refs:EVP_PKEY_RSA (Results 1 - 25 of 42) sorted by null

1 2

  /external/boringssl/src/crypto/x509/
i2d_pr.c 69 case EVP_PKEY_RSA:
algorithm.c 75 if (EVP_PKEY_id(pkey) == EVP_PKEY_RSA) {
108 (EVP_PKEY_id(pkey) == EVP_PKEY_RSA) ? V_ASN1_NULL : V_ASN1_UNDEF;
  /external/boringssl/src/crypto/evp/
p_rsa.c 542 EVP_PKEY_RSA,
559 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, EVP_PKEY_CTRL_RSA_PADDING,
564 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, EVP_PKEY_CTRL_GET_RSA_PADDING,
569 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA,
575 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA,
581 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN,
586 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN,
591 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
596 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT,
601 return EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA,
    [all...]
evp.c 195 case EVP_PKEY_RSA:
225 return EVP_PKEY_assign(pkey, EVP_PKEY_RSA, key);
229 if (pkey->type != EVP_PKEY_RSA) {
evp_asn1.c 218 case EVP_PKEY_RSA: {
321 return d2i_PrivateKey(EVP_PKEY_RSA, out, inp, len);
327 case EVP_PKEY_RSA:
p_rsa_asn1.c 191 EVP_PKEY_RSA,
evp_test.cc 108 return EVP_PKEY_RSA;
print.c 427 EVP_PKEY_RSA,
evp_extra_test.cc 463 EVP_PKEY_RSA);
465 EVP_PKEY_RSA);
518 EXPECT_TRUE(ParsePrivateKey(EVP_PKEY_RSA, kExampleRSAKeyDER,
522 EXPECT_TRUE(ParsePrivateKey(EVP_PKEY_RSA, kExampleRSAKeyPKCS8,
    [all...]
  /external/boringssl/src/ssl/
ssl_privkey.cc 73 return key_type == EVP_PKEY_RSA || key_type == EVP_PKEY_EC ||
327 {SSL_SIGN_RSA_PKCS1_MD5_SHA1, EVP_PKEY_RSA, NID_undef, &EVP_md5_sha1, 0},
328 {SSL_SIGN_RSA_PKCS1_SHA1, EVP_PKEY_RSA, NID_undef, &EVP_sha1, 0},
329 {SSL_SIGN_RSA_PKCS1_SHA256, EVP_PKEY_RSA, NID_undef, &EVP_sha256, 0},
330 {SSL_SIGN_RSA_PKCS1_SHA384, EVP_PKEY_RSA, NID_undef, &EVP_sha384, 0},
331 {SSL_SIGN_RSA_PKCS1_SHA512, EVP_PKEY_RSA, NID_undef, &EVP_sha512, 0},
333 {SSL_SIGN_RSA_PSS_SHA256, EVP_PKEY_RSA, NID_undef, &EVP_sha256, 1},
334 {SSL_SIGN_RSA_PSS_SHA384, EVP_PKEY_RSA, NID_undef, &EVP_sha384, 1},
335 {SSL_SIGN_RSA_PSS_SHA512, EVP_PKEY_RSA, NID_undef, &EVP_sha512, 1},
371 if (alg->pkey_type == EVP_PKEY_RSA && !alg->is_rsa_pss)
    [all...]
ssl_cert.cc 825 if (EVP_PKEY_id(pkey) != EVP_PKEY_RSA) {
  /external/conscrypt/constants/src/gen/cpp/
generate_constants.cpp 55 CONST(EVP_PKEY_RSA);
  /system/keymaster/include/keymaster/
rsa_key_factory.h 47 int evp_key_type() const override { return EVP_PKEY_RSA; }
  /system/keymaster/
openssl_utils.cpp 68 return EVP_PKEY_RSA;
keymaster1_engine.cpp 217 case EVP_PKEY_RSA: {
  /system/security/keystore/
keystore_utils.cpp 70 if (keyType == EVP_PKEY_RSA) {
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLKey.java 255 case NativeConstants.EVP_PKEY_RSA:
288 case NativeConstants.EVP_PKEY_RSA:
OpenSSLRSAKeyFactory.java 54 return OpenSSLKey.getPublicKey((X509EncodedKeySpec) keySpec, NativeConstants.EVP_PKEY_RSA);
72 NativeConstants.EVP_PKEY_RSA);
OpenSSLSignature.java 180 if (pkeyType != NativeConstants.EVP_PKEY_RSA) {
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509.c 353 if ((Pkey == NULL) || (Pkey->type != EVP_PKEY_RSA)) {
  /external/boringssl/src/crypto/pem/
pem_pkey.c 130 ret = d2i_PrivateKey(EVP_PKEY_RSA, x, &p, len);
pem_info.c 174 ptype = EVP_PKEY_RSA;
  /system/security/softkeymaster/
keymaster_openssl.cpp 594 } else if (type == EVP_PKEY_RSA) {
710 } else if (type == EVP_PKEY_RSA) {
  /system/security/keystore-engine/
android_engine.cpp 407 case EVP_PKEY_RSA: {
  /external/boringssl/src/include/openssl/
evp.h 171 #define EVP_PKEY_RSA NID_rsaEncryption
    [all...]

Completed in 154 milliseconds

1 2