Home
last modified time | relevance | path

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

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