HomeSort by relevance Sort by last modified time
    Searched defs:private_key (Results 1 - 14 of 14) sorted by 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/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);
325 zz=pkey->private_key->data;
326 if ((ret=d2i_RSAPrivateKey(a,&zz,pkey->private_key->length)) == NULL)
  /build/core/
package.mk 301 private_key := $(LOCAL_CERTIFICATE).pk8 macro
304 $(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
305 $(LOCAL_BUILT_MODULE): PRIVATE_PRIVATE_KEY := $(private_key)
308 PACKAGES.$(LOCAL_PACKAGE_NAME).PRIVATE_KEY := $(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
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 82 public EnterpriseField private_key = new EnterpriseField("private_key"); field in class:WifiConfiguration
89 private_key, ca_cert };
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
wpa_core.c 78 U8 private_key[WPACORE_MAX_CERT_PASSWORD_LENGTH]; member in struct:__anon8112
758 os_memcpy(pWpaCore->WpaSupplParams.private_key,pWpaCore->WpaSupplParams.client_cert,Len);
759 os_memcpy(&pWpaCore->WpaSupplParams.private_key[Len-3],"pem",3);
761 os_sprintf(cmd, (PS8)"SET_NETWORK %d private_key \"%s\"", NetworkID,pWpaCore->WpaSupplParams.private_key);
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
wpa_core.c 78 U8 private_key[WPACORE_MAX_CERT_PASSWORD_LENGTH]; member in struct:__anon13954
758 os_memcpy(pWpaCore->WpaSupplParams.private_key,pWpaCore->WpaSupplParams.client_cert,Len);
759 os_memcpy(&pWpaCore->WpaSupplParams.private_key[Len-3],"pem",3);
761 os_sprintf(cmd, (PS8)"SET_NETWORK %d private_key \"%s\"", NetworkID,pWpaCore->WpaSupplParams.private_key);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiDialog.java 70 config.private_key.value()};
154 config.private_key.setValue((mEapUserCert.getSelectedItemPosition() == 0) ? "" :
325 config.private_key.value());

Completed in 493 milliseconds