Home
last modified time | relevance | path

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

/external/openssh/
Dumac.c310 #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()
[all …]