Home
last modified time | relevance | path

Searched refs:nonce2 (Results 1 – 5 of 5) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dcipher_suites.go263 nonce1, nonce2 := make([]byte, 12), make([]byte, 12)
265 copy(nonce2, 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))
315 copy(nonce2, fixedNonce)
317 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
/external/python/httplib2/tests/
Dtest_auth.py151 nonce2 = info2.get("digest", {}).get("nonce", "")
153 assert nonce2 != ""
154 assert nonce1 != nonce2, (nonce1, nonce2)
/external/grpc-grpc/src/core/tsi/alts/crypt/
Daes_gcm.cc176 uint32_t nonce2; in aes_gcm_mask_nonce() local
178 memcpy(&nonce2, nonce + sizeof(nonce1), sizeof(nonce2)); in aes_gcm_mask_nonce()
180 nonce2 ^= mask2; in aes_gcm_mask_nonce()
182 memcpy(dst + sizeof(nonce1), &nonce2, sizeof(nonce2)); in aes_gcm_mask_nonce()
/external/wpa_supplicant_8/src/common/
Dwpa_common.c351 const u8 *nonce1, const u8 *nonce2, in wpa_pmk_to_ptk() argument
377 if (os_memcmp(nonce1, nonce2, WPA_NONCE_LEN) < 0) { in wpa_pmk_to_ptk()
379 os_memcpy(data + 2 * ETH_ALEN + WPA_NONCE_LEN, nonce2, in wpa_pmk_to_ptk()
382 os_memcpy(data + 2 * ETH_ALEN, nonce2, WPA_NONCE_LEN); in wpa_pmk_to_ptk()
452 wpa_hexdump(MSG_DEBUG, "WPA: Nonce2", nonce2, WPA_NONCE_LEN); in wpa_pmk_to_ptk()
Dwpa_common.h349 const u8 *nonce1, const u8 *nonce2,