Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/examples/hash/
H A Dsha1.c52 A = ctx->sha1_state[0]; in sha1_process()
53 B = ctx->sha1_state[1]; in sha1_process()
54 C = ctx->sha1_state[2]; in sha1_process()
55 D = ctx->sha1_state[3]; in sha1_process()
56 E = ctx->sha1_state[4]; in sha1_process()
81 ctx->sha1_state[0] += A; in sha1_process()
82 ctx->sha1_state[1] += B; in sha1_process()
83 ctx->sha1_state[2] += C; in sha1_process()
84 ctx->sha1_state[3] += D; in sha1_process()
85 ctx->sha1_state[4] += E; in sha1_process()
[all …]
H A Dsha1.h105 u32 sha1_state[SHA1_STATE_SIZE]; member