aboutsummaryrefslogtreecommitdiff
path: root/src/hash/sha2-256.c
diff options
context:
space:
mode:
authorame <[email protected]>2024-03-26 12:12:53 -0500
committerame <[email protected]>2024-03-26 12:12:53 -0500
commitdc51f7b892ff5a6790a7d728a3acac363588ede2 (patch)
treeb9a1fe4e4a3fb6306ca3d9b48d50ff2692fc3aac /src/hash/sha2-256.c
parenteb6608e16d253ded9ee3979f236b68d4988c1da5 (diff)
blake!
Diffstat (limited to 'src/hash/sha2-256.c')
-rw-r--r--src/hash/sha2-256.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hash/sha2-256.c b/src/hash/sha2-256.c
index 32af13a..d06c4b4 100644
--- a/src/hash/sha2-256.c
+++ b/src/hash/sha2-256.c
@@ -78,8 +78,8 @@ void sha512_gen(uint64_t* out_stream, uint8_t* input, size_t len, struct iv sha_
}
for (int i = 16; i != 80; i++){
- W[i] = (i_rr64(W[i - 2],19) ^ i_rr64(W[i - 2], 61) ^ (W[i - 2] >> 6))
- + W[i - 7] + (i_rr64(W[i - 15],1) ^ i_rr64(W[i - 15],8) ^ (W[i - 15] >> 7)) + W[i - 16];
+ W[i] = (rotr64(W[i - 2],19) ^ rotr64(W[i - 2], 61) ^ (W[i - 2] >> 6))
+ + W[i - 7] + (rotr64(W[i - 15],1) ^ rotr64(W[i - 15],8) ^ (W[i - 15] >> 7)) + W[i - 16];
}
uint64_t a = h0;
@@ -92,11 +92,11 @@ void sha512_gen(uint64_t* out_stream, uint8_t* input, size_t len, struct iv sha_
uint64_t h = h7;
for(int i = 0; i != 80; i++){
- uint64_t S1 = i_rr64(e, 14) ^ i_rr64(e, 18) ^ i_rr64(e, 41);
+ uint64_t S1 = rotr64(e, 14) ^ rotr64(e, 18) ^ rotr64(e, 41);
uint64_t ch = (e & f) ^ ((~e) & g);
uint64_t temp1 = h + S1 + ch + k[i] + W[i];
- uint64_t S0 = i_rr64(a, 28) ^ i_rr64(a, 34) ^ i_rr64(a, 39);
+ uint64_t S0 = rotr64(a, 28) ^ rotr64(a, 34) ^ rotr64(a, 39);
uint64_t maj = (a & b) ^ (a & c) ^ (b & c);
uint64_t temp2 = S0 + maj;