(b *testing.B)
| 73 | } |
| 74 | |
| 75 | func BenchmarkSHA256_ChallengeInputs(b *testing.B) { |
| 76 | b.ResetTimer() |
| 77 | for i := 0; i < b.N; i++ { |
| 78 | input := challengeInputs[i%len(challengeInputs)] |
| 79 | _ = SHA256sum(input) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | func BenchmarkXXHash_ChallengeInputs(b *testing.B) { |
| 84 | b.ResetTimer() |
nothing calls this directly
no test coverage detected