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