| 60 | static u32 Sigma1(u32 x) { return Rot(x, 6) ^ Rot(x, 11) ^ Rot(x, 25); } |
| 61 | static u32 Gamma0(u32 x) { return Rot(x, 7) ^ Rot(x, 18) ^ Sh(x, 3); } |
| 62 | static u32 Gamma1(u32 x) { return Rot(x, 17) ^ Rot(x, 19) ^ Sh(x, 10); } |
| 63 | |
| 64 | static void sha_compress(sha256_state *md, const unsigned char *buf) |
| 65 | { |
no test coverage detected