(key, msg, hexdigest)
| 418 | |
| 419 | def test_md5_rfc2202(self): |
| 420 | def md5test(key, msg, hexdigest): |
| 421 | self.assert_hmac(key, msg, hexdigest, self.md5, "md5", 16, 64) |
| 422 | |
| 423 | md5test(b"\x0b" * 16, |
| 424 | b"Hi There", |
nothing calls this directly
no test coverage detected