Searched refs:xlen (Results 1 – 6 of 6) sorted by relevance
/hostap-3.6.0/src/crypto/ |
D | aes-gcm.c | 103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) in ghash() argument 109 m = xlen / 16; in ghash() 123 if (x + xlen > xpos) { in ghash() 125 size_t last = x + xlen - xpos; in ghash() 143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) in aes_gctr() argument 150 if (xlen == 0) in aes_gctr() 153 n = xlen / 16; in aes_gctr() 165 last = x + xlen - xpos; in aes_gctr()
|
D | fips_prf_internal.c | 17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument 39 m = xlen / 40; in fips186_2_prf()
|
D | fips_prf_wolfssl.c | 36 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument 58 m = xlen / 40; in fips186_2_prf()
|
D | fips_prf_openssl.c | 48 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument 70 m = xlen / 40; in fips186_2_prf()
|
D | crypto.h | 69 size_t xlen);
|
/hostap-3.6.0/src/eap_common/ |
D | eap_sim_common.c | 22 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen) in eap_sim_prf() argument 24 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen); in eap_sim_prf()
|