Searched refs:SHA2_STEP (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/bearssl/src/hash/ |
H A D | sha2small.c | 73 #define SHA2_STEP(A, B, C, D, E, F, G, H, j) do { \ in br_sha2small_round() macro 99 SHA2_STEP(a, b, c, d, e, f, g, h, i + 0); in br_sha2small_round() 100 SHA2_STEP(h, a, b, c, d, e, f, g, i + 1); in br_sha2small_round() 101 SHA2_STEP(g, h, a, b, c, d, e, f, i + 2); in br_sha2small_round() 102 SHA2_STEP(f, g, h, a, b, c, d, e, i + 3); in br_sha2small_round() 103 SHA2_STEP(e, f, g, h, a, b, c, d, i + 4); in br_sha2small_round() 104 SHA2_STEP(d, e, f, g, h, a, b, c, i + 5); in br_sha2small_round() 105 SHA2_STEP(c, d, e, f, g, h, a, b, i + 6); in br_sha2small_round() 106 SHA2_STEP(b, c, d, e, f, g, h, a, i + 7); in br_sha2small_round()
|