Lines Matching refs:sha2_word32
92 typedef uint32_t sha2_word32; /* Exactly 4 bytes */ typedef
153 typedef uint32_t sha2_word32; /* Exactly 4 bytes */ typedef
159 typedef u_int32_t sha2_word32; /* Exactly 4 bytes */ typedef
182 sha2_word32 tmp = (w); \
284 static const sha2_word32 K256[64] = {
304 static const sha2_word32 sha256_initial_hash_value[8] = {
468 sha2_word32 state[8];
510 static void SHA256_Transform(SHA256_CTX* sha, const sha2_word32* data) { in SHA256_Transform()
511 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform()
512 sha2_word32 T1, *W256; in SHA256_Transform()
515 W256 = (sha2_word32*)sha->buffer; in SHA256_Transform()
568 static void SHA256_Transform(SHA256_CTX* sha, const sha2_word32* data) { in SHA256_Transform()
569 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform()
570 sha2_word32 T1, T2, *W256; in SHA256_Transform()
573 W256 = (sha2_word32*)sha->buffer; in SHA256_Transform()
668 SHA256_Transform(sha, (sha2_word32*)sha->buffer); in sha256_block()
680 SHA256_Transform(sha, (sha2_word32*)data); in sha256_block()
749 SHA256_Transform(sha, (sha2_word32*)sha->buffer); in sha256_done()
765 SHA256_Transform(sha, (sha2_word32*)sha->buffer); in sha256_done()
771 sha2_word32* d = (sha2_word32*)sha->digest; in sha256_done()