Searched refs:private_key (Results 101 - 125 of 165) sorted by relevance

1234567

/external/chromium_org/content/child/webcrypto/
H A Dalgorithm_dispatch.h56 blink::WebCryptoKey* private_key);
H A Dwebcrypto_impl.cc220 private_key(blink::WebCryptoKey::createNull()),
228 // symmetric key, and |private_key| is unused.
230 blink::WebCryptoKey private_key; member in struct:content::__anon7555::GenerateKeyState
405 state->result.completeWithKeyPair(state->public_key, state->private_key);
422 &state->private_key);
426 DCHECK(state->private_key.handle());
428 DCHECK_EQ(state->algorithm.id(), state->private_key.algorithm().id());
430 DCHECK_EQ(state->extractable, state->private_key.extractable());
H A Dalgorithm_implementation.cc82 blink::WebCryptoKey* private_key) const {
H A Dalgorithm_implementation.h99 blink::WebCryptoKey* private_key) const;
H A Dalgorithm_dispatch.cc125 blink::WebCryptoKey* private_key) {
143 private_key);
121 GenerateKeyPair(const blink::WebCryptoAlgorithm& algorithm, bool extractable, blink::WebCryptoKeyUsageMask combined_usage_mask, blink::WebCryptoKey* public_key, blink::WebCryptoKey* private_key) argument
/external/chromium_org/content/child/webcrypto/nss/
H A Drsa_key_nss.h57 blink::WebCryptoKey* private_key) const OVERRIDE;
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.cc44 "private_key BLOB NOT NULL,"
224 "SELECT origin, private_key, cert, cert_type, expiration_time, "
496 "INSERT INTO origin_bound_certs (origin, private_key, cert, cert_type, "
518 const std::string& private_key = po->channel_id().private_key(); local
520 1, private_key.data(), static_cast<int>(private_key.size()));
/external/chromium_org/third_party/webrtc/base/
H A Dnssidentity.h105 static SSLIdentity* FromPEMStrings(const std::string& private_key,
H A Dopensslidentity.h115 static SSLIdentity* FromPEMStrings(const std::string& private_key,
H A Dsslidentity.h145 static SSLIdentity* FromPEMStrings(const std::string& private_key,
H A Dopensslidentity.cc322 const std::string& private_key,
331 BIO* bio = BIO_new_mem_buf(const_cast<char*>(private_key.c_str()), -1);
321 FromPEMStrings( const std::string& private_key, const std::string& certificate) argument
H A Dnssidentity.cc451 SSLIdentity* NSSIdentity::FromPEMStrings(const std::string& private_key, argument
455 kPemTypeRsaPrivateKey, private_key, &private_key_der))
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_cred.c310 * @private_key: File or reference name for the key in PEM or DER format
313 * @private_key_blob: private_key as inlined data or %NULL if not used
318 const char *private_key,
331 if (private_key) {
336 buf = (u8 *) os_readfile(private_key, &len);
339 private_key);
317 tlsv1_set_private_key(struct tlsv1_credentials *cred, const char *private_key, const char *private_key_passwd, const u8 *private_key_blob, size_t private_key_blob_len) argument
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_cred.c310 * @private_key: File or reference name for the key in PEM or DER format
313 * @private_key_blob: private_key as inlined data or %NULL if not used
318 const char *private_key,
331 if (private_key) {
336 buf = (u8 *) os_readfile(private_key, &len);
339 private_key);
317 tlsv1_set_private_key(struct tlsv1_credentials *cred, const char *private_key, const char *private_key_passwd, const u8 *private_key_blob, size_t private_key_blob_len) argument
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_cred.c310 * @private_key: File or reference name for the key in PEM or DER format
313 * @private_key_blob: private_key as inlined data or %NULL if not used
318 const char *private_key,
331 if (private_key) {
336 buf = (u8 *) os_readfile(private_key, &len);
339 private_key);
317 tlsv1_set_private_key(struct tlsv1_credentials *cred, const char *private_key, const char *private_key_passwd, const u8 *private_key_blob, size_t private_key_blob_len) argument
/external/chromium_org/chrome/browser/net/
H A Dquota_policy_channel_id_store_unittest.cc133 ASSERT_STREQ("a", goog_channel_id->private_key().c_str());
138 ASSERT_STREQ("c", foo_channel_id->private_key().c_str());
/external/chromium_org/net/socket/
H A Dssl_client_socket_openssl_unittest.cc143 // |private_key| must be an EVP_PKEY for the corresponding private key.
146 EVP_PKEY* private_key) {
148 ssl_config.client_cert.get(), private_key);
145 RecordPrivateKey(SSLConfig& ssl_config, EVP_PKEY* private_key) argument
H A Dssl_server_socket_nss.cc447 SECKEYPrivateKeyStr* private_key = NULL; local
466 key_usage, &private_key, NULL);
475 rv = SSL_ConfigSecureServer(nss_fd_, cert, private_key, cert_kea);
477 SECKEY_DestroyPrivateKey(private_key);
/external/chromium_org/chrome/browser/extensions/api/easy_unlock_private/
H A Deasy_unlock_private_api.cc332 const std::string& private_key,
335 if (!public_key.empty() && !private_key.empty()) {
337 public_key, private_key);
331 OnData( const std::string& private_key, const std::string& public_key) argument
/external/chromium_org/content/child/webcrypto/test/
H A Dtest_helpers.h131 blink::WebCryptoKey* private_key);
/external/openssl/apps/
H A Dopenssl.cnf55 private_key = $dir/private/cakey.pem# The private key
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_internal.c211 if (tlsv1_set_private_key(cred, params->private_key,
271 if (tlsv1_set_private_key(cred, params->private_key,
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_tls.c36 ((sm->init_phase2 ? config->private_key2 : config->private_key)
58 } else if (config->private_key && !config->private_key_passwd)
/external/wpa_supplicant_8/src/crypto/
H A Dtls_internal.c211 if (tlsv1_set_private_key(cred, params->private_key,
271 if (tlsv1_set_private_key(cred, params->private_key,
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_tls.c36 ((sm->init_phase2 ? config->private_key2 : config->private_key)
58 } else if (config->private_key && !config->private_key_passwd)

Completed in 5931 milliseconds

1234567