Lines Matching refs:L1_KEY_LEN
310 #define L1_KEY_LEN 1024 /* Internal key bytes */ macro
317 UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */
1050 if (ctx->msg_len + len <= L1_KEY_LEN) { in uhash_update()
1055 bytes_hashed = ctx->msg_len % L1_KEY_LEN; in uhash_update()
1056 if (ctx->msg_len == L1_KEY_LEN) in uhash_update()
1057 bytes_hashed = L1_KEY_LEN; in uhash_update()
1059 if (bytes_hashed + len >= L1_KEY_LEN) { in uhash_update()
1065 bytes_remaining = (L1_KEY_LEN - bytes_hashed); in uhash_update()
1075 while (len >= L1_KEY_LEN) { in uhash_update()
1076 nh(&ctx->hash, (const UINT8 *)input, L1_KEY_LEN, in uhash_update()
1077 L1_KEY_LEN, nh_result); in uhash_update()
1078 ctx->msg_len += L1_KEY_LEN; in uhash_update()
1079 len -= L1_KEY_LEN; in uhash_update()
1080 input += L1_KEY_LEN; in uhash_update()
1103 if (ctx->msg_len > L1_KEY_LEN) { in uhash_final()
1104 if (ctx->msg_len % L1_KEY_LEN) { in uhash_final()
1131 if (len <= L1_KEY_LEN) {
1145 nh(&ahc->hash, (UINT8 *)msg, L1_KEY_LEN, L1_KEY_LEN, nh_result);
1147 len -= L1_KEY_LEN;
1148 msg += L1_KEY_LEN;
1149 } while (len >= L1_KEY_LEN);