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

  /external/chromium/chrome/browser/extensions/
extension_creator.cc 46 // Validate input |private_key| (if provided).
125 std::string private_key; local
126 if (!Extension::ProducePEM(private_key_bytes, &private_key)) {
132 if (!Extension::FormatPEMForFileOutput(private_key, &pem_output,
166 crypto::RSAPrivateKey* private_key,
169 crypto::SignatureCreator::Create(private_key));
189 crypto::RSAPrivateKey* private_key,
197 if (!private_key->ExportPublicKey(&public_key)) {
  /external/chromium/net/base/
keygen_handler_mac.cc 99 SecKeyRef private_key,
107 SecKeyRef private_key = NULL; local
129 &public_key, &private_key);
171 err = SignData(encoded, private_key, &signature);
203 if (private_key)
204 SecKeychainItemDelete(reinterpret_cast<SecKeychainItemRef>(private_key));
215 if (private_key)
216 CFRelease(private_key);
307 SecKeyRef private_key,
310 OSStatus err = CreateSignatureContext(private_key,
    [all...]
  /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/wpa_supplicant_8/src/tls/
rsa.c 18 int private_key; /* whether private key is set */ member in struct:crypto_rsa_key
21 /* The following parameters are available only if private_key is set */
137 key->private_key = 1;
249 if (use_private && !key->private_key)
  /external/chromium/net/socket/
ssl_server_socket_nss.cc 304 SECKEYPrivateKeyStr* private_key = NULL; local
323 key_usage, &private_key, NULL);
332 rv = SSL_ConfigSecureServer(nss_fd_, cert, private_key, cert_kea);
334 SECKEY_DestroyPrivateKey(private_key);
  /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
258 * This field is like private_key, but used for phase 2 (inside
  /build/core/
package.mk 381 private_key := $(LOCAL_CERTIFICATE).pk8 macro
384 $(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
385 $(LOCAL_BUILT_MODULE): PRIVATE_PRIVATE_KEY := $(private_key)
388 PACKAGES.$(LOCAL_PACKAGE_NAME).PRIVATE_KEY := $(private_key)
  /external/wpa_supplicant_8/src/crypto/
tls.h 101 * @private_key: File or reference name for client private key in PEM or DER
103 * @private_key_blob: private_key as inlined data or %NULL if not used
139 const char *private_key; member in struct:tls_connection_params
tls_openssl.c 81 EVP_PKEY *private_key; /* the private key if using engine */ member in struct:tls_connection
860 conn->private_key = ENGINE_load_private_key(conn->engine,
862 if (!conn->private_key) {
892 if (conn->private_key) {
893 EVP_PKEY_free(conn->private_key);
894 conn->private_key = NULL;
908 if (conn->private_key) {
909 EVP_PKEY_free(conn->private_key);
910 conn->private_key = NULL;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 109 * private_key - File path to client private key file (PEM/DER/PFX)
118 * configuring private_key in one of the following formats:
124 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
133 char *private_key; member in struct:wpa_cred
  /external/wpa_supplicant_8/src/ap/
ap_config.h 294 char *private_key; member in struct:hostapd_bss_config

Completed in 1363 milliseconds