(self)
| 986 | self.check('shake_256', b"", "46b9", True) |
| 987 | |
| 988 | def test_case_shake256_vector(self): |
| 989 | for msg, md in read_vectors('shake_256'): |
| 990 | self.check('shake_256', msg, md, True) |
| 991 | |
| 992 | def test_gil(self): |
| 993 | # Check things work fine with an input larger than the size required |
nothing calls this directly
no test coverage detected