Home
last modified time | relevance | path

Searched refs:nonce1 (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dcipher_suites.go263 nonce1, nonce2 := make([]byte, 12), make([]byte, 12)
264 copy(nonce1, fixedNonce)
268 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
271 return &tlsAead{&fixedNonceAEAD{nonce1, nonce2, aead}, true}
313 nonce1, nonce2 := make([]byte, len(fixedNonce)), make([]byte, len(fixedNonce))
314 copy(nonce1, fixedNonce)
317 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
/external/syslinux/gpxe/src/net/80211/
Dwpa.c319 u8 nonce1[WPA_NONCE_LEN]; in wpa_derive_ptk() member
335 memcpy ( ptk_data.nonce1, ctx->Anonce, WPA_NONCE_LEN ); in wpa_derive_ptk()
338 memcpy ( ptk_data.nonce1, ctx->Snonce, WPA_NONCE_LEN ); in wpa_derive_ptk()
345 DBGC2_HD ( ctx, ptk_data.nonce1, WPA_NONCE_LEN ); in wpa_derive_ptk()
/external/wpa_supplicant_8/src/common/
Dwpa_common.c243 const u8 *nonce1, const u8 *nonce2, in wpa_pmk_to_ptk() argument
263 if (os_memcmp(nonce1, nonce2, WPA_NONCE_LEN) < 0) { in wpa_pmk_to_ptk()
264 os_memcpy(data + 2 * ETH_ALEN, nonce1, WPA_NONCE_LEN); in wpa_pmk_to_ptk()
269 os_memcpy(data + 2 * ETH_ALEN + WPA_NONCE_LEN, nonce1, in wpa_pmk_to_ptk()
326 wpa_hexdump(MSG_DEBUG, "WPA: Nonce1", nonce1, WPA_NONCE_LEN); in wpa_pmk_to_ptk()
Dwpa_common.h335 const u8 *nonce1, const u8 *nonce2,