(x)
| 1022 | } |
| 1023 | |
| 1024 | function sha256_Sigma0512(x) { |
| 1025 | return (sha256_S(x, 28) ^ sha256_S(x, 34) ^ sha256_S(x, 39)); |
| 1026 | } |
| 1027 | |
| 1028 | function sha256_Sigma1512(x) { |
| 1029 | return (sha256_S(x, 14) ^ sha256_S(x, 18) ^ sha256_S(x, 41)); |
nothing calls this directly
no test coverage detected