(x)
| 1026 | } |
| 1027 | |
| 1028 | function sha256_Sigma1512(x) { |
| 1029 | return (sha256_S(x, 14) ^ sha256_S(x, 18) ^ sha256_S(x, 41)); |
| 1030 | } |
| 1031 | |
| 1032 | function sha256_Gamma0512(x) { |
| 1033 | return (sha256_S(x, 1) ^ sha256_S(x, 8) ^ sha256_R(x, 7)); |
nothing calls this directly
no test coverage detected