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

1 2

  /external/boringssl/src/crypto/x509/
i2d_pr.c 71 case EVP_PKEY_EC:
x509_req.c 135 if (k->type == EVP_PKEY_EC) {
x509_cmp.c 359 if (pkey && pkey->type == EVP_PKEY_EC)
  /external/conscrypt/constants/src/gen/cpp/
generate_constants.cc 56 CONST(EVP_PKEY_EC);
  /system/keymaster/include/keymaster/km_openssl/
ec_key_factory.h 35 int evp_key_type() const override { return EVP_PKEY_EC; }
  /external/boringssl/src/ssl/
ssl_privkey.cc 75 return key_type == EVP_PKEY_RSA || key_type == EVP_PKEY_EC ||
118 {SSL_SIGN_ECDSA_SHA1, EVP_PKEY_EC, NID_undef, &EVP_sha1, 0},
119 {SSL_SIGN_ECDSA_SECP256R1_SHA256, EVP_PKEY_EC, NID_X9_62_prime256v1,
121 {SSL_SIGN_ECDSA_SECP384R1_SHA384, EVP_PKEY_EC, NID_secp384r1, &EVP_sha384,
123 {SSL_SIGN_ECDSA_SECP521R1_SHA512, EVP_PKEY_EC, NID_secp521r1, &EVP_sha512,
157 if (alg->pkey_type == EVP_PKEY_EC &&
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSignatureRawECDSA.java 62 if (pkeyType != NativeConstants.EVP_PKEY_EC) {
OpenSSLECKeyFactory.java 53 return OpenSSLKey.getPublicKey((X509EncodedKeySpec) keySpec, NativeConstants.EVP_PKEY_EC);
69 NativeConstants.EVP_PKEY_EC);
OpenSSLKey.java 266 case NativeConstants.EVP_PKEY_EC:
299 case NativeConstants.EVP_PKEY_EC:
OpenSSLSignature.java 186 if (pkeyType != NativeConstants.EVP_PKEY_EC) {
  /external/boringssl/src/crypto/evp/
evp.c 197 case EVP_PKEY_EC:
281 return EVP_PKEY_assign(pkey, EVP_PKEY_EC, key);
285 if (pkey->type != EVP_PKEY_EC) {
evp_asn1.c 202 case EVP_PKEY_EC: {
315 return d2i_PrivateKey(EVP_PKEY_EC, out, inp, len);
331 case EVP_PKEY_EC:
p_ec.c 225 EVP_PKEY_EC,
p_ec_asn1.c 235 EVP_PKEY_EC,
evp_extra_test.cc 466 TestValidPrivateKey(kExampleECKeyDER, sizeof(kExampleECKeyDER), EVP_PKEY_EC);
468 EVP_PKEY_EC);
470 sizeof(kExampleECKeySpecifiedCurvePKCS8), EVP_PKEY_EC);
525 ParsePrivateKey(EVP_PKEY_EC, kExampleECKeyDER, sizeof(kExampleECKeyDER)));
527 EXPECT_FALSE(ParsePrivateKey(EVP_PKEY_EC, kExampleBadECKeyDER,
535 EXPECT_FALSE(ParsePrivateKey(EVP_PKEY_EC, copy.data(), copy.size()));
539 EXPECT_FALSE(ParsePrivateKey(EVP_PKEY_EC, kExampleRSAKeyPKCS8,
    [all...]
evp_test.cc 112 return EVP_PKEY_EC;
print.c 439 EVP_PKEY_EC,
  /system/keymaster/km_openssl/
openssl_utils.cpp 71 return EVP_PKEY_EC;
attestation_utils.cpp 360 int evp_key_type = (sign_algorithm == KM_ALGORITHM_RSA) ? EVP_PKEY_RSA : EVP_PKEY_EC;
  /external/boringssl/src/crypto/pem/
pem_pkey.c 133 ret = d2i_PrivateKey(EVP_PKEY_EC, x, &p, len);
pem_info.c 214 ptype = EVP_PKEY_EC;
  /system/keymaster/key_blob_utils/
software_keyblobs.cpp 132 case EVP_PKEY_EC: {
  /system/security/keystore-engine/
android_engine.cpp 387 case EVP_PKEY_EC: {
  /external/boringssl/src/include/openssl/
evp.h 173 #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey
    [all...]
  /system/keymaster/legacy_support/
keymaster1_engine.cpp 221 case EVP_PKEY_EC: {

Completed in 882 milliseconds

1 2