HomeSort by relevance Sort by last modified time
    Searched defs:public_key (Results 1 - 20 of 20) sorted by null

  /external/chromium/crypto/
rsa_private_key_nss_unittest.cc 35 std::vector<uint8> public_key; local
36 ASSERT_TRUE(key_pair->ExportPublicKey(&public_key));
39 crypto::RSAPrivateKey::FindFromPublicKeyInfo(public_key));
48 std::vector<uint8> public_key; local
49 ASSERT_TRUE(key_pair->ExportPublicKey(&public_key));
61 EXPECT_EQ(NULL, crypto::RSAPrivateKey::FindFromPublicKeyInfo(public_key));
signature_verifier_openssl.cc 20 ScopedOpenSSL<EVP_PKEY, EVP_PKEY_free> public_key; member in struct:crypto::SignatureVerifier::VerifyContext
59 verify_context_->public_key.reset(d2i_PUBKEY_bio(bio.get(), NULL));
60 if (!verify_context_->public_key.get())
82 verify_context_->public_key.get());
rsa_private_key_mac.cc 34 result->public_key(), CSSM_KEYUSE_SIGN,
119 CSSM_KEY* public_key = result->public_key(); local
121 public_key->KeyData.Data = reinterpret_cast<uint8*>(CSSMMalloc(size));
122 if (!public_key->KeyData.Data) {
126 memcpy(public_key->KeyData.Data, &public_key_data.front(), size);
127 public_key->KeyData.Length = size;
128 public_key->KeyHeader.Format = CSSM_KEYBLOB_RAW_FORMAT_PKCS1;
129 public_key->KeyHeader.HeaderVersion = CSSM_KEYHEADER_VERSION;
130 public_key->KeyHeader.BlobType = CSSM_KEYBLOB_RAW
    [all...]
rsa_private_key.h 216 SECKEYPublicKeyStr* public_key() { return public_key_; } function in class:crypto::RSAPrivateKey
222 CSSM_KEY_PTR public_key() { return &public_key_; } function in class:crypto::RSAPrivateKey
  /external/chromium/chrome/common/remoting/
chromoting_host_info.h 19 std::string public_key; member in struct:remoting::ChromotingHostInfo
  /external/chromium/chrome/browser/chromeos/login/
owner_key_utils_unittest.cc 54 std::vector<uint8> public_key; local
55 ASSERT_TRUE(pair->ExportPublicKey(&public_key));
61 for (pubkey_it = public_key.begin(), disk_it = from_disk.begin();
62 pubkey_it < public_key.end();
  /external/chromium/chrome/browser/extensions/
extension_creator.cc 196 std::vector<uint8> public_key; local
197 if (!private_key->ExportPublicKey(&public_key)) {
207 header.key_size = public_key.size();
214 if (fwrite(&public_key.front(), sizeof(uint8), public_key.size(),
215 crx_handle.get()) != public_key.size()) {
216 PLOG(ERROR) << "fwrite failed to write public_key.front";
  /external/chromium/net/base/
keygen_handler_mac.cc 106 SecKeyRef public_key = NULL; local
129 &public_key, &private_key);
135 err = SecKeychainItemExport(public_key, kSecFormatBSAFE, 0, NULL,
201 if (public_key)
202 SecKeychainItemDelete(reinterpret_cast<SecKeychainItemRef>(public_key));
213 if (public_key)
214 CFRelease(public_key);
  /external/chromium/net/socket/
dns_cert_provenance_checker.cc 213 SECKEYPublicKey* public_key = SECKEY_ExtractPublicKey(spki); local
216 return public_key;
  /external/openssl/crypto/dh/
dh_ameth.c 79 ASN1_INTEGER *public_key = NULL; local
103 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
110 if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
116 ASN1_INTEGER_free(public_key);
121 if (public_key)
122 ASN1_INTEGER_free(public_key);
  /external/openssl/crypto/dsa/
dsa_ameth.c 77 ASN1_INTEGER *public_key = NULL; local
113 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
119 if (!(dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
125 ASN1_INTEGER_free(public_key);
130 if (public_key)
131 ASN1_INTEGER_free(public_key);
  /external/openssl/crypto/ec/
ec_ameth.c 436 const EC_POINT *public_key; local
454 public_key = EC_KEY_get0_public_key(x);
455 if ((pub_key = EC_POINT_point2bn(group, public_key,
  /external/wpa_supplicant/
x509v3.h 44 u8 *public_key; member in struct:x509_certificate
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
x509v3.h 44 u8 *public_key; member in struct:x509_certificate
  /external/wpa_supplicant_8/src/tls/
x509v3.h 64 u8 *public_key; member in struct:x509_certificate
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_i.h 158 const u8 *public_key; member in struct:wps_parse_attr
  /external/wpa_supplicant_8/src/wps/
wps_i.h 185 const u8 *public_key; member in struct:wps_parse_attr
  /external/chromium/chrome/common/extensions/
extension.h 578 const std::string& public_key() const { return public_key_; } function in class:Extension
    [all...]
  /external/openssl/crypto/x509/
x509.h 163 ASN1_BIT_STRING *public_key; member in struct:X509_pubkey_st
    [all...]
  /external/openssl/include/openssl/
x509.h 163 ASN1_BIT_STRING *public_key; member in struct:X509_pubkey_st
    [all...]

Completed in 235 milliseconds