/external/chromium_org/chrome/browser/local_discovery/wifi/ |
wifi_manager.cc | 29 WifiCredentials WifiCredentials::FromPSK(const std::string& psk) { 31 return_value.psk = psk;
|
wifi_manager.h | 25 // Credentials for WiFi networks. Currently only supports PSK-based networks. 28 static WifiCredentials FromPSK(const std::string& psk); 30 std::string psk; member in struct:local_discovery::wifi::WifiCredentials
|
mock_wifi_manager.cc | 32 ConfigureAndConnectNetworkInternal(ssid, credentials.psk);
|
wifi_manager_nonchromeos.cc | 532 credentials.psk,
|
/external/chromium_org/chrome/browser/chromeos/login/easy_unlock/ |
easy_unlock_types.h | 29 std::string psk; member in struct:chromeos::EasyUnlockDeviceKeyData
|
easy_unlock_key_manager.cc | 23 const char kKeyPsk[] = "psk"; 111 dict->SetString(kKeyPsk, data.psk); 128 std::string psk; local 132 !dict.GetString(kKeyPsk, &psk)) { 138 data->psk.swap(psk);
|
easy_unlock_get_keys_operation.cc | 84 device.psk = *entry.bytes;
|
easy_unlock_create_keys_operation.cc | 352 kEasyUnlockKeyMetaNamePsk, device->psk));
|
/external/ipsec-tools/src/racoon/ |
privsep.c | 468 vchar_t *psk; local 486 if ((psk = getpsk(bufs[0], keylen)) == NULL) { 491 reply->bufs.buflen[0] = psk->l; 492 reply->hdr.ac_len = sizeof(*reply) + psk->l; 501 memcpy(reply + 1, psk->v, psk->l); 502 vfree(psk); 894 vchar_t *psk; local 932 if ((psk = vmalloc(len - sizeof(*msg))) == NULL) 935 memcpy(psk->v, msg + 1, psk->l) [all...] |
/external/openssl/android.testssl/ |
testssl | 165 echo test tls1 with PSK 166 $ssltest -tls1 -cipher PSK -psk abc123 $extra || exit 1 168 echo test tls1 with PSK via BIO pair 169 $ssltest -bio_pair -tls1 -cipher PSK -psk abc123 $extra || exit 1
|
/external/chromium_org/chrome/browser/signin/ |
easy_unlock_service.cc | 381 paired_devices.insert(device_key_data.psk); 618 devices_in_cryptohome.insert(device_key_data.psk);
|
/external/openssl/ssl/ |
ssltest.c | 124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 243 static char *psk_key=NULL; /* by default PSK is not used */ 246 unsigned int max_identity_len, unsigned char *psk, 248 static unsigned int psk_server_callback(SSL *ssl, const char *identity, unsigned char *psk, 339 fprintf(stderr," -psk arg - PSK in hex (without 0x)\n"); 634 else if (strcmp(*argv,"-psk") == 0) 1040 /* Use PSK only if PSK key is given */ 1043 /* no_psk is used to avoid putting psk command to openssl tool * [all...] |
ssl.h | 124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 279 #define SSL_TXT_PSK "PSK" 460 * PSK_identity_hint [ 7 ] EXPLICIT OCTET STRING, -- optional PSK identity hint 461 * PSK_identity [ 8 ] EXPLICIT OCTET STRING, -- optional PSK identity [all...] |
ssl_lib.c | 126 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites [all...] |
s3_clnt.c | 132 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 336 /* or non-RSA PSK */ 2458 unsigned char psk[PSK_MAX_PSK_LEN]; local [all...] |
s3_srvr.c | 132 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 417 /* non-RSA PSK or KRB5 or SRP */ 419 /* Among PSK ciphersuites only RSA_PSK uses server certificate */ 470 * PSK: may send PSK identity hints 479 /* PSK: send ServerKeyExchange if either: 480 * - PSK identity hint is provided, or 530 /* With normal PSK Certificates and 2223 unsigned char psk[PSK_MAX_PSK_LEN]; local [all...] |
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
ssl.h | 124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 214 #define SSL_TXT_PSK "PSK" 376 * PSK_identity_hint [ 7 ] EXPLICIT OCTET STRING, -- optional PSK identity hint 377 * PSK_identity [ 8 ] EXPLICIT OCTET STRING, -- optional PSK identity [all...] |
/external/openssl/include/openssl/ |
ssl.h | 124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 279 #define SSL_TXT_PSK "PSK" 460 * PSK_identity_hint [ 7 ] EXPLICIT OCTET STRING, -- optional PSK identity hint 461 * PSK_identity [ 8 ] EXPLICIT OCTET STRING, -- optional PSK identity [all...] |
/external/chromium_org/third_party/boringssl/src/ssl/ |
s3_clnt.c | 132 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 1885 unsigned char psk[PSK_MAX_PSK_LEN]; local [all...] |
s3_srvr.c | 131 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 375 * - There is a PSK identity hint. 412 /* With normal PSK Certificates and 1765 unsigned char psk[PSK_MAX_PSK_LEN]; local [all...] |
ssl_lib.c | 123 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites [all...] |
/external/openssl/apps/ |
s_client.c | 119 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 222 /* Default PSK identity and key */ 224 /*char *psk_key=NULL; by default PSK is not used */ 227 unsigned int max_identity_len, unsigned char *psk, 240 BIO_printf(bio_c_out,"NULL received PSK identity hint, continuing anyway\n"); 243 BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint); 245 /* lookup PSK identity and PSK key based on the given identity hint here */ 254 BIO_printf(bio_err,"Could not convert PSK key '%s' to BIGNUM\n", psk_key); 262 BIO_printf(bio_err,"psk buffer of callback is too small (%d) for key (%d)\n" [all...] |
s_server.c | 124 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 314 char *psk_key=NULL; /* by default PSK is not used */ 317 unsigned char *psk, unsigned int max_psk_len) 327 BIO_printf(bio_err,"Error: client did not send PSK identity\n"); 337 BIO_printf(bio_s_out, "PSK error: client identity not found" 343 BIO_printf(bio_s_out, "PSK client identity found\n"); 345 /* convert the PSK key to binary */ 349 BIO_printf(bio_err,"Could not convert PSK key '%s' to BIGNUM\n", psk_key); 356 BIO_printf(bio_err,"psk buffer of callback is too small (%d) for key (%d)\n", 362 ret = BN_bn2bin(bn, psk); [all...] |
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | [all...] |