HomeSort by relevance Sort by last modified time
    Searched refs:private_key (Results 51 - 75 of 147) sorted by null

1 23 4 5 6

  /build/core/
dpi_specific_apk.mk 32 $(built_dpi_apk): PRIVATE_PRIVATE_KEY := $(private_key)
41 $(built_dpi_apk) : $(private_key) $(certificate) $(SIGNAPK_JAR)
65 PACKAGES.$(dpi_apk_name).PRIVATE_KEY := $(private_key)
  /external/chromium_org/net/quic/crypto/
p256_key_exchange_nss.cc 116 vector<uint8> private_key; local
119 &private_key)) {
134 uint16 private_key_size = private_key.size();
145 memcpy(resultp, &private_key[0], private_key.size());
146 resultp += private_key.size();
crypto_server_config_protobuf.h 35 std::string private_key() const { function in class:net::QuicServerConfigProtobuf::PrivateKey
  /external/chromium_org/chrome/browser/chromeos/ownership/
owner_settings_service_chromeos.cc 65 const scoped_refptr<PrivateKey>& private_key)>&
70 scoped_refptr<PrivateKey> private_key(new PrivateKey(
74 base::Bind(callback, public_key, private_key));
81 const scoped_refptr<PrivateKey>& private_key)>&
86 scoped_refptr<PrivateKey> private_key; local
89 base::Bind(callback, public_key, private_key));
270 const scoped_refptr<PrivateKey>& private_key)>& callback) {
owner_settings_service_chromeos.h 82 const scoped_refptr<ownership::PrivateKey>& private_key)>& callback)
  /external/chromium_org/chrome/browser/extensions/
extension_creator.cc 58 // Validate input |private_key| (if provided).
167 std::string private_key; local
168 if (!Extension::ProducePEM(private_key_bytes, &private_key)) {
174 if (!Extension::FormatPEMForFileOutput(private_key, &pem_output,
211 crypto::RSAPrivateKey* private_key,
214 crypto::SignatureCreator::Create(private_key,
239 crypto::RSAPrivateKey* private_key,
251 CHECK(private_key->ExportPublicKey(&public_key));
  /external/openssl/crypto/asn1/
n_pkey.c 76 ASN1_OCTET_STRING *private_key; member in struct:netscape_pkey_st
102 ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING)
150 pkey->private_key->length=rsalen;
178 pkey->private_key->data = zz;
197 OPENSSL_cleanse(pkey->private_key->data, rsalen);
333 zz=pkey->private_key->data;
334 if ((ret=d2i_RSAPrivateKey(a,&zz,pkey->private_key->length)) == NULL)
  /external/chromium_org/chrome/browser/ui/android/
ssl_client_certificate_request.cc 38 crypto::ScopedEVP_PKEY private_key) {
41 client_cert.get(), private_key.get());
186 crypto::ScopedEVP_PKEY private_key(
188 if (!private_key.get()) {
203 base::Passed(&private_key)),
  /external/chromium_org/chrome/common/extensions/api/networking_private/
networking_private_crypto_nss.cc 188 scoped_ptr<crypto::RSAPrivateKey> private_key(
190 if (!private_key || !private_key->public_key()) {
195 size_t encrypted_length = SECKEY_SignatureLen(private_key->public_key());
199 PK11_PrivDecryptPKCS1(private_key->key(),
networking_private_crypto_openssl.cc 185 scoped_ptr<crypto::RSAPrivateKey> private_key(
187 if (!private_key || !private_key->key()) {
192 crypto::ScopedRSA rsa(EVP_PKEY_get1_RSA(private_key->key()));
  /external/chromium_org/net/cert/
x509_certificate_nss.cc 70 SECKEYPrivateKey* private_key = PK11_FindPrivateKeyFromCert( local
74 if (private_key) {
75 char* private_key_nickname = PK11_GetPrivateKeyNickname(private_key);
79 SECKEY_DestroyPrivateKey(private_key);
82 SECKEY_DestroyPrivateKey(private_key);
x509_util_nss_unittest.cc 151 scoped_ptr<crypto::ECPrivateKey> private_key; local
157 &private_key,
165 ASSERT_TRUE(private_key->ExportPublicKey(&spki));
x509_util_openssl_unittest.cc 120 scoped_ptr<crypto::ECPrivateKey> private_key(
124 x509_util::CreateChannelIDEC(private_key.get(),
136 ASSERT_TRUE(private_key->ExportPublicKey(&spki));
x509_util_unittest.cc 58 scoped_ptr<crypto::RSAPrivateKey> private_key; local
66 &private_key,
69 ASSERT_TRUE(private_key.get());
169 scoped_ptr<crypto::RSAPrivateKey> private_key(
171 ASSERT_TRUE(private_key.get());
175 private_key.get(),
  /external/chromium_org/net/ssl/
openssl_platform_key_mac.cc 79 base::ScopedCFTypeRef<SecKeyRef> private_key; local
80 status = SecIdentityCopyPrivateKey(identity, private_key.InitializeInto());
86 return private_key.release();
455 base::ScopedCFTypeRef<SecKeyRef> private_key(
457 if (!private_key)
461 return CreatePkeyWrapper(private_key.get());
default_channel_id_store.cc 84 const std::string& private_key,
101 const std::string& private_key,
106 private_key_(private_key),
254 *private_key_result = channel_id->private_key();
264 const std::string& private_key,
267 server_identifier, creation_time, expiration_time, private_key,
370 const std::string& private_key,
379 server_identifier, creation_time, expiration_time, private_key,
default_channel_id_store.h 57 const std::string& private_key,
112 const std::string& private_key,
  /external/chromium_org/content/child/webcrypto/nss/
rsa_ssa_nss.cc 51 SECKEYPrivateKey* private_key = PrivateKeyNss::Cast(key)->key();
80 private_key,
  /external/chromium_org/content/renderer/media/
webrtc_identity_service.cc 102 const std::string& private_key) {
110 pending_requests_.front().success_callback.Run(certificate, private_key);
  /external/chromium_org/content/child/webcrypto/openssl/
rsa_key_openssl.cc 94 crypto::ScopedEVP_PKEY private_key,
102 rsa_algorithm_id, hash.id(), private_key.get(), &key_algorithm);
109 status = ExportPKeyPkcs8(private_key.get(), &pkcs8_data);
114 new AsymKeyOpenSsl(private_key.Pass(), CryptoData(pkcs8_data)),
252 blink::WebCryptoKey* private_key) const {
309 private_key);
350 crypto::ScopedEVP_PKEY private_key(EVP_PKCS82PKEY(p8inf.get()));
351 if (!private_key.get())
354 if (EVP_PKEY_id(private_key.get()) != EVP_PKEY_RSA)
359 crypto::ScopedRSA rsa(EVP_PKEY_get1_RSA(private_key.get()))
    [all...]
  /external/chromium_org/extensions/common/
file_util_unittest.cc 288 const char private_key[] = member in namespace:extensions
314 src_path.AppendASCII("a_key.pem"), private_key, arraysize(private_key)));
316 private_key,
317 arraysize(private_key)));
320 private_key,
321 arraysize(private_key)));
324 private_key,
325 arraysize(private_key) - 30));
352 ext_path.AppendASCII("a_key.pem"), private_key, strlen(private_key)))
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 129 * private_key - File path to client private key file (PEM/DER/PFX)
138 * configuring private_key in one of the following formats:
144 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
153 u8 *private_key; member in struct:eap_peer_config
276 * This field is like private_key, but used for phase 2 (inside
  /external/chromium_org/net/extras/sqlite/
sqlite_channel_id_store_unittest.cc 131 ASSERT_STREQ("a", goog_channel_id->private_key().c_str());
136 ASSERT_STREQ("c", foo_channel_id->private_key().c_str());
230 "private_key BLOB NOT NULL,cert BLOB NOT NULL);"));
233 "INSERT INTO origin_bound_certs (origin, private_key, cert) "
297 "private_key BLOB NOT NULL,"
302 "INSERT INTO origin_bound_certs (origin, private_key, cert, cert_type) "
331 ASSERT_EQ(key_data, channel_ids[0]->private_key());
337 ASSERT_STREQ("\xaa", channel_ids[1]->private_key().c_str());
378 "private_key BLOB NOT NULL,"
384 "INSERT INTO origin_bound_certs (origin, private_key, cert, cert_type,
    [all...]
  /external/chromium_org/content/browser/media/
webrtc_identity_store_unittest.cc 31 const std::string& private_key) {
34 ASSERT_NE("", private_key);
37 *out_key = private_key;
72 std::string* private_key) {
77 base::Bind(&OnRequestCompleted, completed, certificate, private_key));
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf 410 # private_key: File path to client private key file (PEM/DER/PFX)
418 # configuring private_key in one of the following formats:
424 # For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
    [all...]

Completed in 640 milliseconds

1 23 4 5 6