(b *testing.B)
| 82 | } |
| 83 | |
| 84 | func BenchmarkHS256Signing(b *testing.B) { |
| 85 | benchmarkSigning(b, jwt.SigningMethodHS256, hmacTestKey) |
| 86 | } |
| 87 | |
| 88 | func BenchmarkHS384Signing(b *testing.B) { |
| 89 | benchmarkSigning(b, jwt.SigningMethodHS384, hmacTestKey) |
nothing calls this directly
no test coverage detected