HomeSort by relevance Sort by last modified time
    Searched refs:private_key (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_shared_secret.c 28 @param private_key The private ECC key
34 int ecc_shared_secret(ecc_key *private_key, ecc_key *public_key,
42 LTC_ARGCHK(private_key != NULL);
48 if (private_key->type != PK_PRIVATE) {
52 if (ltc_ecc_is_valid_idx(private_key->idx) == 0 || ltc_ecc_is_valid_idx(public_key->idx) == 0) {
56 if (XSTRCMP(private_key->dp->name, public_key->dp->name) != 0) {
71 if ((err = mp_read_radix(prime, (char *)private_key->dp->prime, 16)) != CRYPT_OK) { goto done; }
72 if ((err = ltc_mp.ecc_ptmul(private_key->k, &public_key->pubkey, result, prime, 1)) != CRYPT_OK) { goto done; }
  /external/wpa_supplicant/examples/
wpa2-eap-ccmp.conf 13 private_key="/etc/cert/user.p12"
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpa2-eap-ccmp.conf 13 private_key="/etc/cert/user.p12"
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_shared_secret.c 22 @param private_key The private DSA key (the exponent)
29 int dsa_shared_secret(void *private_key, void *base,
37 LTC_ARGCHK(private_key != NULL);
47 if ((err = mp_exptmod(base, private_key, public_key->p, res)) != CRYPT_OK) {
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_cred.h 39 const char *private_key,
tlsv1_cred.c 227 * @private_key: File or reference name for the key in PEM or DER format
230 * @private_key_blob: private_key as inlined data or %NULL if not used
235 const char *private_key,
247 if (private_key) {
252 buf = (u8 *) os_readfile(private_key, &len);
255 private_key);
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/bluetooth/glib/glib/
gthread.h 95 gpointer (*private_get) (GPrivate *private_key);
96 void (*private_set) (GPrivate *private_key,
208 #define g_private_get(private_key) G_THREAD_CF (private_get, \
209 ((gpointer)private_key), \
210 (private_key))
211 #define g_private_set(private_key, value) G_THREAD_CF (private_set, \
212 (void) (private_key = \
214 (private_key, value))
255 void g_static_private_init (GStaticPrivate *private_key);
256 gpointer g_static_private_get (GStaticPrivate *private_key);
    [all...]
gthread.c 414 g_static_private_init (GStaticPrivate *private_key)
416 private_key->index = 0;
420 g_static_private_get (GStaticPrivate *private_key)
429 if (!private_key->index)
431 else if (private_key->index <= array->len)
433 private_key->index - 1).data;
439 g_static_private_set (GStaticPrivate *private_key,
455 if (!private_key->index)
459 if (!private_key->index)
463 private_key->index
    [all...]
  /external/bluetooth/glib/gthread/
gthread-posix.c 277 g_private_set_posix_impl (GPrivate * private_key, gpointer value)
279 if (!private_key)
281 pthread_setspecific (*(pthread_key_t *) private_key, value);
285 g_private_get_posix_impl (GPrivate * private_key)
287 if (!private_key)
290 return pthread_getspecific (*(pthread_key_t *) private_key);
294 posix_check_cmd (pthread_getspecific (*(pthread_key_t *) private_key,
gthread-win32.c 350 g_private_set_win32_impl (GPrivate * private_key, gpointer value)
353 guint index = GPOINTER_TO_UINT (private_key);
368 g_private_get_win32_impl (GPrivate * private_key)
371 guint index = GPOINTER_TO_UINT (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)
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.conf 391 # private_key: File path to client private key file (PEM/DER/PFX)
397 # configuring private_key in one of the following formats:
400 # for example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
561 private_key="/etc/cert/user.prv"
675 private_key="/etc/cert/user.prv"
781 private_key="/etc/cert/user.prv"
  /external/wpa_supplicant/
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...]
tlsv1_client.h 53 const char *private_key,
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_gnutls.c 595 if (params->client_cert && params->private_key) {
598 conn->xcred, params->client_cert, params->private_key,
605 params->private_key, GNUTLS_X509_FMT_DER);
613 } else if (params->private_key) {
619 conn->xcred, params->private_key, GNUTLS_X509_FMT_DER,
622 wpa_printf(MSG_DEBUG, "Failed to load private_key in "
715 if (params->client_cert && params->private_key) {
719 params->private_key, GNUTLS_X509_FMT_PEM);
725 params->private_key, GNUTLS_X509_FMT_DER);
733 } else if (params->private_key) {
    [all...]
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
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
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...]
tls_gnutls.c 611 if (params->client_cert && params->private_key) {
614 conn->xcred, params->client_cert, params->private_key,
621 params->private_key, GNUTLS_X509_FMT_DER);
629 } else if (params->private_key) {
635 conn->xcred, params->private_key, GNUTLS_X509_FMT_DER,
638 wpa_printf(MSG_DEBUG, "Failed to load private_key in "
743 if (params->client_cert && params->private_key) {
747 params->private_key, GNUTLS_X509_FMT_PEM);
753 params->private_key, GNUTLS_X509_FMT_DER);
761 } else if (params->private_key) {
    [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/openssl/android.testssl/
CAss.cnf 45 private_key = $dir/private/cakey.pem# The private key
  /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)
  /cts/tests/core/
ctscore.mk 39 $(PACKAGE_RESOURCES): PRIVATE_PRIVATE_KEY := $(private_key)
  /external/openssl/apps/
openssl-vms.cnf 50 private_key = $dir.private]cakey.pem# The private key

Completed in 318 milliseconds

1 2 3