Searched refs:L1_KEY_LEN (Results 1 – 1 of 1) sorted by relevance
309 #define L1_KEY_LEN 1024 /* Internal key bytes */ macro316 UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */1049 if (ctx->msg_len + len <= L1_KEY_LEN) { in uhash_update()1054 bytes_hashed = ctx->msg_len % L1_KEY_LEN; in uhash_update()1055 if (ctx->msg_len == L1_KEY_LEN) in uhash_update()1056 bytes_hashed = L1_KEY_LEN; in uhash_update()1058 if (bytes_hashed + len >= L1_KEY_LEN) { in uhash_update()1064 bytes_remaining = (L1_KEY_LEN - bytes_hashed); in uhash_update()1074 while (len >= L1_KEY_LEN) { in uhash_update()1075 nh(&ctx->hash, (UINT8 *)input, L1_KEY_LEN, in uhash_update()[all …]