(self)
| 877 | @unittest.expectedFailure # TODO: RUSTPYTHON; blake2 key parameter not supported |
| 878 | @requires_blake2 |
| 879 | def test_blake2b_vectors(self): |
| 880 | for msg, key, md in read_vectors('blake2b'): |
| 881 | key = bytes.fromhex(key) |
| 882 | self.check('blake2b', msg, md, key=key) |
| 883 | |
| 884 | @unittest.expectedFailure # TODO: RUSTPYTHON; add to constructor const value |
| 885 | @requires_blake2 |
nothing calls this directly
no test coverage detected