Searched refs:L1_KEY_LEN (Results 1 – 1 of 1) sorted by relevance
314 #define L1_KEY_LEN 1024 /* Internal key bytes */ macro321 UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */1055 if (ctx->msg_len + len <= L1_KEY_LEN) { in uhash_update()1060 bytes_hashed = ctx->msg_len % L1_KEY_LEN; in uhash_update()1061 if (ctx->msg_len == L1_KEY_LEN) in uhash_update()1062 bytes_hashed = L1_KEY_LEN; in uhash_update()1064 if (bytes_hashed + len >= L1_KEY_LEN) { in uhash_update()1070 bytes_remaining = (L1_KEY_LEN - bytes_hashed); in uhash_update()1080 while (len >= L1_KEY_LEN) { in uhash_update()1081 nh(&ctx->hash, (const UINT8 *)input, L1_KEY_LEN, in uhash_update()[all …]