Searched refs:private_key (Results 26 - 50 of 165) sorted by relevance

1234567

/external/chromium_org/content/renderer/media/
H A Dpeer_connection_identity_service.h34 const std::string& private_key);
H A Dwebrtc_identity_service.h25 void(const std::string& certificate, const std::string& private_key)>
84 const std::string& private_key);
/external/chromium_org/crypto/third_party/nss/
H A Dchromium-nss.h69 SECKEYPrivateKey** private_key,
/external/chromium_org/net/quic/crypto/
H A Dcurve25519_key_exchange.h27 static Curve25519KeyExchange* New(const base::StringPiece& private_key);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_cred.h33 const char *private_key,
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_cred.h33 const char *private_key,
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_cred.h33 const char *private_key,
/external/chromium_org/net/ssl/
H A Ddefault_channel_id_store_unittest.cc163 std::string private_key, cert; local
168 &private_key,
171 EXPECT_TRUE(private_key.empty());
181 &private_key,
185 EXPECT_EQ("i", private_key);
194 std::string private_key, cert; local
213 &private_key,
217 EXPECT_EQ("c", private_key);
232 std::string private_key; local
238 &private_key,
319 std::string private_key, cert; local
386 std::string private_key; local
[all...]
/external/chromium_org/content/browser/media/
H A Dwebrtc_identity_store.cc26 const std::string& private_key)
27 : error(error), certificate(certificate), private_key(private_key) {}
31 std::string private_key; member in struct:content::WebRTCIdentityRequestResult
65 result->private_key =
110 it->second.Run(result.error, result.certificate, result.private_key);
159 const std::string& private_key) {
163 base::ResetAndReturn(&callback_).Run(error, certificate, private_key);
243 const std::string& private_key) {
247 WebRTCIdentityRequestResult result(error, certificate, private_key);
24 WebRTCIdentityRequestResult(int error, const std::string& certificate, const std::string& private_key) argument
157 OnRequestComplete(int error, const std::string& certificate, const std::string& private_key) argument
240 BackendFindCallback(WebRTCIdentityRequest* request, int error, const std::string& certificate, const std::string& private_key) argument
[all...]
H A Dwebrtc_identity_store_backend.h35 const std::string& private_key)>
63 // |private_key| is the DER string of the private key.
69 const std::string& private_key);
H A Dwebrtc_identity_store_backend.cc33 db->DoesColumnExist(kWebRTCIdentityStoreDBName, "private_key") &&
48 "private_key BLOB NOT NULL,"
68 const std::string& private_key)
71 private_key(private_key),
76 const std::string& private_key,
80 private_key(private_key),
85 std::string private_key; member in struct:content::WebRTCIdentityStoreBackend::Identity
237 iter->second.private_key));
66 Identity(const std::string& common_name, const std::string& certificate, const std::string& private_key) argument
74 Identity(const std::string& common_name, const std::string& certificate, const std::string& private_key, int64 creation_time) argument
250 AddIdentity(const GURL& origin, const std::string& identity_name, const std::string& common_name, const std::string& certificate, const std::string& private_key) argument
412 std::string cert, private_key; local
575 const std::string& private_key = (*it)->identity.private_key; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_creator.h85 crypto::RSAPrivateKey* private_key,
90 crypto::RSAPrivateKey* private_key,
/external/chromium_org/chromeos/dbus/
H A Deasy_unlock_client.h34 typedef base::Callback<void(const std::string& private_key,
106 virtual void PerformECDHKeyAgreement(const std::string& private_key,
H A Dfake_easy_unlock_client_unittest.cc153 const std::string private_key = "{\"ec_p256_private_key\": 415}"; local
158 private_key,
166 const std::string private_key = "{\"ec_p256_private_key_invalid\": 415}"; local
170 client.PerformECDHKeyAgreement(private_key,
179 const std::string private_key = "{\"ec_p256_private_key\": 415}"; local
183 client.PerformECDHKeyAgreement(private_key,
192 const std::string private_key = "invalid"; local
196 client.PerformECDHKeyAgreement(private_key,
H A Deasy_unlock_client.cc47 virtual void PerformECDHKeyAgreement(const std::string& private_key,
56 AppendStringAsByteArray(private_key, &writer);
146 std::string private_key = PopResponseData(&reader); local
149 if (public_key.empty() || private_key.empty()) {
154 callback.Run(private_key, public_key);
/external/chromium_org/components/ownership/
H A Downer_settings_service.h74 const scoped_refptr<PrivateKey>& private_key);
79 const scoped_refptr<PrivateKey>& private_key)>& callback) = 0;
/external/chromium_org/v8/tools/testrunner/server/
H A Dsignatures.py40 private_key = "~/.ssh/v8_dtest"
42 (signature_file, private_key, filename),
/external/chromium_org/third_party/webrtc/base/
H A Dsslidentity.cc105 SSLIdentity* SSLIdentity::FromPEMStrings(const std::string& private_key, argument
124 SSLIdentity* SSLIdentity::FromPEMStrings(const std::string& private_key, argument
126 return OpenSSLIdentity::FromPEMStrings(private_key, certificate);
143 SSLIdentity* SSLIdentity::FromPEMStrings(const std::string& private_key, argument
145 return NSSIdentity::FromPEMStrings(private_key, certificate);
/external/chromium_org/content/child/webcrypto/openssl/
H A Drsa_ssa_openssl.cc66 EVP_PKEY* private_key = NULL; variable
68 Status status = GetPKeyAndDigest(key, &private_key, &digest);
77 !EVP_DigestSignInit(ctx.get(), NULL, digest, NULL, private_key) ||
/external/chromium_org/content/child/webcrypto/test/
H A Drsa_oaep_unittest.cc50 blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); local
59 &private_key));
206 GetBytesFromHexString(test, "private_key");
214 blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); local
223 &private_key));
229 private_key,
241 private_key,
356 blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); local
365 &private_key));
377 private_key,
391 blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); local
401 &private_key)); local
509 blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); local
519 &private_key)); local
[all...]
/external/chromium_org/chrome/browser/extensions/api/easy_unlock_private/
H A Deasy_unlock_private_crypto_delegate.h25 const std::string& private_key)>
/external/chromium_org/content/browser/renderer_host/media/
H A Dwebrtc_identity_service_host.h44 const std::string& private_key);
/external/chromium_org/net/android/
H A Dnetwork_library.h49 const uint8* private_key,
/external/chromium_org/remoting/base/
H A Drsa_key_pair.h41 crypto::RSAPrivateKey* private_key() { return key_.get(); } function in class:remoting::RsaKeyPair
/external/chromium_org/chromeos/network/onc/
H A Donc_certificate_importer_impl.cc147 SECKEYPrivateKey* private_key = PK11_FindPrivateKeyFromCert( local
151 if (private_key) {
152 char* private_key_nickname = PK11_GetPrivateKeyNickname(private_key);
156 SECKEY_DestroyPrivateKey(private_key);
392 SECKEYPrivateKey* private_key = PK11_FindPrivateKeyFromCert( local
396 if (private_key) {
397 PK11_SetPrivateKeyNickname(private_key, const_cast<char*>(guid.c_str()));
398 SECKEY_DestroyPrivateKey(private_key);

Completed in 1530 milliseconds

1234567