Home
last modified time | relevance | path

Searched refs:xlen (Results 1 – 6 of 6) sorted by relevance

/hostap-3.6.0/src/crypto/
Daes-gcm.c103 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()
Dfips_prf_internal.c17 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()
Dfips_prf_wolfssl.c36 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()
Dfips_prf_openssl.c48 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()
Dcrypto.h69 size_t xlen);
/hostap-3.6.0/src/eap_common/
Deap_sim_common.c22 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()