HomeSort by relevance Sort by last modified time
    Searched defs:private_key (Results 1 - 20 of 20) 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)
149 pkey->private_key->length=rsalen;
177 pkey->private_key->data = zz;
196 OPENSSL_cleanse(pkey->private_key->data, rsalen);
324 zz=pkey->private_key->data;
325 if ((ret=d2i_RSAPrivateKey(a,&zz,pkey->private_key->length)) == NULL)
  /external/wpa_supplicant/
rsa.c 25 int private_key; /* whether private key is set */ member in struct:crypto_rsa_key
28 /* The following parameters are available only if private_key is set */
144 key->private_key = 1;
256 if (use_private && !key->private_key)
tls.h 52 * @private_key: File or reference name for client private key in PEM or DER
54 * @private_key_blob: private_key as inlined data or %NULL if not used
87 const char *private_key; member in struct:tls_connection_params
config_ssid.h 310 * private_key - File path to client private key file (PEM/DER/PFX)
319 * configuring private_key in one of the following formats:
325 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
334 u8 *private_key; member in struct:wpa_ssid
439 * This field is like private_key, but used for phase 2 (inside
tls_openssl.c 63 EVP_PKEY *private_key; /* the private key if using engine */ member in struct:tls_connection
827 conn->private_key = ENGINE_load_private_key(conn->engine,
829 if (!conn->private_key) {
844 if (conn->private_key) {
845 EVP_PKEY_free(conn->private_key);
846 conn->private_key = NULL;
860 if (conn->private_key) {
861 EVP_PKEY_free(conn->private_key);
862 conn->private_key = NULL;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
rsa.c 25 int private_key; /* whether private key is set */ member in struct:crypto_rsa_key
28 /* The following parameters are available only if private_key is set */
145 key->private_key = 1;
258 if (use_private && !key->private_key)
  /external/wpa_supplicant_8/src/tls/
rsa.c 24 int private_key; /* whether private key is set */ member in struct:crypto_rsa_key
27 /* The following parameters are available only if private_key is set */
143 key->private_key = 1;
255 if (use_private && !key->private_key)
  /build/core/
package.mk 340 private_key := $(LOCAL_CERTIFICATE).pk8 macro
343 $(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
344 $(LOCAL_BUILT_MODULE): PRIVATE_PRIVATE_KEY := $(private_key)
347 PACKAGES.$(LOCAL_PACKAGE_NAME).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_6/wpa_supplicant/src/crypto/
tls.h 55 * @private_key: File or reference name for client private key in PEM or DER
57 * @private_key_blob: private_key as inlined data or %NULL if not used
94 const char *private_key; member in struct:tls_connection_params
tls_openssl.c 73 EVP_PKEY *private_key; /* the private key if using engine */ member in struct:tls_connection
793 conn->private_key = ENGINE_load_private_key(conn->engine,
795 if (!conn->private_key) {
825 if (conn->private_key) {
826 EVP_PKEY_free(conn->private_key);
827 conn->private_key = NULL;
841 if (conn->private_key) {
842 EVP_PKEY_free(conn->private_key);
843 conn->private_key = NULL;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_config.h 123 * private_key - File path to client private key file (PEM/DER/PFX)
132 * configuring private_key in one of the following formats:
138 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
147 u8 *private_key; member in struct:eap_peer_config
252 * This field is like private_key, but used for phase 2 (inside
  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 132 * private_key - File path to client private key file (PEM/DER/PFX)
141 * configuring private_key in one of the following formats:
147 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
156 u8 *private_key; member in struct:eap_peer_config
261 * This field is like private_key, but used for phase 2 (inside
  /external/wpa_supplicant_8/src/crypto/
tls.h 99 * @private_key: File or reference name for client private key in PEM or DER
101 * @private_key_blob: private_key as inlined data or %NULL if not used
138 const char *private_key; member in struct:tls_connection_params
tls_openssl.c 72 EVP_PKEY *private_key; /* the private key if using engine */ member in struct:tls_connection
830 conn->private_key = ENGINE_load_private_key(conn->engine,
832 if (!conn->private_key) {
862 if (conn->private_key) {
863 EVP_PKEY_free(conn->private_key);
864 conn->private_key = NULL;
878 if (conn->private_key) {
879 EVP_PKEY_free(conn->private_key);
880 conn->private_key = NULL;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 85 public EnterpriseField private_key = new EnterpriseField("private_key"); field in class:WifiConfiguration
92 private_key, ca_cert };
  /external/wpa_supplicant_8/src/ap/
ap_config.h 247 char *private_key; member in struct:hostapd_bss_config
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 127 config.private_key.value()};
368 config.private_key.setValue((mEapUserCertSpinner.getSelectedItemPosition() == 0) ?
560 config.private_key.value());

Completed in 397 milliseconds