Lines Matching refs:L1_KEY_LEN
316 #define L1_KEY_LEN 1024 /* Internal key bytes */ macro
323 UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */
1056 if (ctx->msg_len + len <= L1_KEY_LEN) { in uhash_update()
1061 bytes_hashed = ctx->msg_len % L1_KEY_LEN; in uhash_update()
1062 if (ctx->msg_len == L1_KEY_LEN) in uhash_update()
1063 bytes_hashed = L1_KEY_LEN; in uhash_update()
1065 if (bytes_hashed + len >= L1_KEY_LEN) { in uhash_update()
1071 bytes_remaining = (L1_KEY_LEN - bytes_hashed); in uhash_update()
1081 while (len >= L1_KEY_LEN) { in uhash_update()
1082 nh(&ctx->hash, (const UINT8 *)input, L1_KEY_LEN, in uhash_update()
1083 L1_KEY_LEN, nh_result); in uhash_update()
1084 ctx->msg_len += L1_KEY_LEN; in uhash_update()
1085 len -= L1_KEY_LEN; in uhash_update()
1086 input += L1_KEY_LEN; in uhash_update()
1109 if (ctx->msg_len > L1_KEY_LEN) { in uhash_final()
1110 if (ctx->msg_len % L1_KEY_LEN) { in uhash_final()
1137 if (len <= L1_KEY_LEN) {
1151 nh(&ahc->hash, (UINT8 *)msg, L1_KEY_LEN, L1_KEY_LEN, nh_result);
1153 len -= L1_KEY_LEN;
1154 msg += L1_KEY_LEN;
1155 } while (len >= L1_KEY_LEN);