Lines Matching defs:sha2_word32
74 typedef uint32_t sha2_word32; /* Exactly 4 bytes */
135 typedef uint32_t sha2_word32; /* Exactly 4 bytes */
141 typedef u_int32_t sha2_word32; /* Exactly 4 bytes */
164 sha2_word32 tmp = (w); \
266 static const sha2_word32 K256[64] = {
286 static const sha2_word32 sha256_initial_hash_value[8] = {
450 sha2_word32 state[8];
492 static void SHA256_Transform(SHA256_CTX* sha, const sha2_word32* data) {
493 sha2_word32 a, b, c, d, e, f, g, h, s0, s1;
494 sha2_word32 T1, *W256;
497 W256 = (sha2_word32*)sha->buffer;
550 static void SHA256_Transform(SHA256_CTX* sha, const sha2_word32* data) {
551 sha2_word32 a, b, c, d, e, f, g, h, s0, s1;
552 sha2_word32 T1, T2, *W256;
555 W256 = (sha2_word32*)sha->buffer;
650 SHA256_Transform(sha, (sha2_word32*)sha->buffer);
662 SHA256_Transform(sha, (sha2_word32*)data);
731 SHA256_Transform(sha, (sha2_word32*)sha->buffer);
747 SHA256_Transform(sha, (sha2_word32*)sha->buffer);
753 sha2_word32* d = (sha2_word32*)sha->digest;