Searched refs:spki (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/net/cert/
H A Djwk_serializer_nss.cc23 CERTSubjectPublicKeyInfo* spki,
29 if (spki->subjectPublicKey.len != (kPrime256v1PublicKeyLength + 1) * 8 ||
30 spki->subjectPublicKey.data[0] != kUncompressedEncodingType)
37 reinterpret_cast<char*>(spki->subjectPublicKey.data + 1),
44 reinterpret_cast<char*>(spki->subjectPublicKey.data + 1 +
54 CERTSubjectPublicKeyInfo* spki,
63 if (spki->algorithm.parameters.len == sizeof(kPrime256v1) &&
64 !memcmp(spki->algorithm.parameters.data, kPrime256v1,
66 return ConvertEcPrime256v1PublicKeyInfoToJwk(spki, public_key_jwk);
94 ScopedCERTSubjectPublicKeyInfo spki(
22 ConvertEcPrime256v1PublicKeyInfoToJwk( CERTSubjectPublicKeyInfo* spki, base::DictionaryValue* public_key_jwk) argument
53 ConvertEcPublicKeyInfoToJwk( CERTSubjectPublicKeyInfo* spki, base::DictionaryValue* public_key_jwk) argument
[all...]
H A Dcrl_set.cc95 const std::string spki(reinterpret_cast<const char*>(issuer_spki->data),
97 crl_set->crls_.push_back(make_pair(spki, std::vector<std::string>()));
98 crl_set->crls_index_by_issuer_[spki] = 0;
H A Dasn1_util.h68 // in |spki| and extracts the bytes of the SubjectPublicKey. On successful
69 // return, |spk_out| is set to contain the public key, pointing into |spki|.
71 base::StringPiece spki,
H A Dsha256_legacy_support_win.cc173 CERTSubjectPublicKeyInfo* spki = local
176 if (!spki) {
184 &signed_data, spki, NULL);
185 SECKEY_DestroySubjectPublicKeyInfo(spki);
H A Djwk_serializer_unittest.cc64 base::StringPiece spki; local
67 EXPECT_FALSE(JwkSerializer::ConvertSpkiFromDerToJwk(spki, &public_key_jwk));
71 spki.set(reinterpret_cast<const char*>(kSpkiEc), sizeof(kSpkiEc));
72 EXPECT_TRUE(JwkSerializer::ConvertSpkiFromDerToJwk(spki, &public_key_jwk));
99 spki.set(reinterpret_cast<const char*>(kSpkiEcWithLeadingZero),
101 EXPECT_TRUE(JwkSerializer::ConvertSpkiFromDerToJwk(spki, &public_key_jwk));
H A Dx509_util_nss_unittest.cc164 std::vector<uint8> spki; local
165 ASSERT_TRUE(private_key->ExportPublicKey(&spki));
166 VerifyCertificateSignature(der_cert, spki);
H A Dx509_util_openssl_unittest.cc135 std::vector<uint8> spki; local
136 ASSERT_TRUE(private_key->ExportPublicKey(&spki));
137 VerifyCertificateSignature(der_cert, spki);
/external/chromium_org/net/base/
H A Dkeygen_handler_openssl.cc26 crypto::ScopedOpenSSL<NETSCAPE_SPKI, NETSCAPE_SPKI_free>::Type spki(
28 ASN1_STRING_set(spki.get()->spkac->challenge,
30 NETSCAPE_SPKI_set_pubkey(spki.get(), pkey);
33 NETSCAPE_SPKI_sign(spki.get(), pkey, EVP_md5());
34 char* spkistr = NETSCAPE_SPKI_b64_encode(spki.get());
H A Dkeygen_handler_mac.cc30 CSSM_X509_SUBJECT_PUBLIC_KEY_INFO spki; member in struct:net::PublicKeyAndChallenge
49 offsetof(PublicKeyAndChallenge, spki),
154 spkac.pkac.spki.algorithm.algorithm = CSSMOID_RSA;
155 spkac.pkac.spki.subjectPublicKey.Length =
157 spkac.pkac.spki.subjectPublicKey.Data =
H A Dkeygen_handler_win.cc69 std::vector<BYTE> spki; local
71 if (!GetSubjectPublicKeyInfo(prov, &spki))
75 // spki SubjectPublicKeyInfo,
81 *reinterpret_cast<PCERT_PUBLIC_KEY_INFO>(&spki[0]);
/external/openssl/crypto/asn1/
H A Dt_spki.c73 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki) argument
80 i=OBJ_obj2nid(spki->spkac->pubkey->algor->algorithm);
83 pkey = X509_PUBKEY_get(spki->spkac->pubkey);
90 chal = spki->spkac->challenge;
93 i=OBJ_obj2nid(spki->sig_algor->algorithm);
97 n=spki->signature->length;
98 s=(char *)spki->signature->data;
/external/openssl/crypto/x509/
H A Dx509spki.c83 NETSCAPE_SPKI *spki; local
97 spki = d2i_NETSCAPE_SPKI(NULL, &p, spki_len);
99 return spki;
104 char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki) argument
109 der_len = i2d_NETSCAPE_SPKI(spki, NULL);
117 i2d_NETSCAPE_SPKI(spki, &p);
/external/chromium_org/chrome/renderer/resources/extensions/enterprise_platform_keys/
H A Dkey.js37 this.spki = publicKeySpki;
67 if (!keyImpl || !keyImpl.spki)
69 return keyImpl.spki;
H A Dsubtle_crypto.js119 function(spki) {
126 resolve(new KeyPair(spki, normalizedAlgorithmParameters, keyUsages));
171 } else if (format == 'spki') {
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509spki.c81 NETSCAPE_SPKI *spki; local
98 spki = d2i_NETSCAPE_SPKI(NULL, &p, spki_len);
100 return spki;
105 char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki) argument
111 der_len = i2d_NETSCAPE_SPKI(spki, NULL);
129 i2d_NETSCAPE_SPKI(spki, &p);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DSubjectKeyIdentifier.java78 * @param spki the subject public key info.
82 SubjectPublicKeyInfo spki)
84 this.keyidentifier = getDigest(spki);
127 private static byte[] getDigest(SubjectPublicKeyInfo spki) argument
134 byte[] bytes = spki.getPublicKeyData().getBytes();
81 SubjectKeyIdentifier( SubjectPublicKeyInfo spki) argument
H A DAuthorityKeyIdentifier.java109 SubjectPublicKeyInfo spki)
116 byte[] bytes = spki.getPublicKeyData().getBytes();
127 SubjectPublicKeyInfo spki,
136 byte[] bytes = spki.getPublicKeyData().getBytes();
108 AuthorityKeyIdentifier( SubjectPublicKeyInfo spki) argument
126 AuthorityKeyIdentifier( SubjectPublicKeyInfo spki, GeneralNames name, BigInteger serialNumber) argument
/external/openssl/apps/
H A Dspkac.c94 NETSCAPE_SPKI *spki = NULL; local
202 spki = NETSCAPE_SPKI_new();
203 if(challenge) ASN1_STRING_set(spki->spkac->challenge,
205 NETSCAPE_SPKI_set_pubkey(spki, pkey);
206 NETSCAPE_SPKI_sign(spki, pkey, EVP_md5());
207 spkstr = NETSCAPE_SPKI_b64_encode(spki);
259 spki = NETSCAPE_SPKI_b64_decode(spkstr, -1);
261 if(!spki) {
284 if(!noout) NETSCAPE_SPKI_print(out, spki);
285 pkey = NETSCAPE_SPKI_get_pubkey(spki);
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
H A DCertificationRequestInfoTest.java47 SubjectPublicKeyInfo spki = new SubjectPublicKeyInfo(
55 version, subject, spki, attributes);
61 assertTrue(Arrays.equals(spki.getEncoded(), certReqInfo
H A DCertificationRequestTest.java46 SubjectPublicKeyInfo spki = new SubjectPublicKeyInfo(
53 version, subject, spki, attributes);
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dmessage_property_provider.cc92 base::StringPiece spki; local
93 if (!net::asn1::ExtractSPKIFromDERCert(output->domain_bound_cert, &spki)) {
98 if (!net::JwkSerializer::ConvertSpkiFromDerToJwk(spki, &jwk_value)) {
/external/chromium_org/crypto/
H A Drsa_private_key_nss.cc43 inline void operator()(CERTSubjectPublicKeyInfo* spki) { argument
44 SECKEY_DestroySubjectPublicKeyInfo(spki);
59 ScopedPublicKeyInfo spki(SECKEY_DecodeDERSubjectPublicKeyInfo(&key_der));
60 if (!spki)
63 crypto::ScopedSECKEYPublicKey result(SECKEY_ExtractPublicKey(spki.get()));
H A Dsignature_verifier_nss.cc197 CERTSubjectPublicKeyInfo* spki = NULL; local
202 spki = SECKEY_DecodeDERSubjectPublicKeyInfo(&spki_der);
203 if (!spki)
205 SECKEYPublicKey* public_key = SECKEY_ExtractPublicKey(spki);
206 SECKEY_DestroySubjectPublicKeyInfo(spki); // Done with spki.
/external/chromium_org/net/quic/crypto/
H A Dproof_verifier_chromium.cc268 StringPiece spki; local
269 if (!asn1::ExtractSPKIFromDERCert(cert, &spki)) {
289 reinterpret_cast<const uint8*>(spki.data()), spki.size());
317 reinterpret_cast<const uint8*>(spki.data()),
318 spki.size())) {
/external/chromium_org/chrome/third_party/mozilla_security_manager/
H A DnsNSSCertHelper.h75 std::string ProcessSubjectPublicKeyInfo(CERTSubjectPublicKeyInfo* spki);

Completed in 7337 milliseconds

12