(key, msg, hexdigest)
| 452 | |
| 453 | def test_sha1_rfc2202(self): |
| 454 | def shatest(key, msg, hexdigest): |
| 455 | self.assert_hmac(key, msg, hexdigest, self.sha1, "sha1", 20, 64) |
| 456 | |
| 457 | shatest(b"\x0b" * 20, |
| 458 | b"Hi There", |
nothing calls this directly
no test coverage detected