(self)
| 923 | @unittest.expectedFailure # TODO: RUSTPYTHON; blake2 key parameter not supported |
| 924 | @requires_blake2 |
| 925 | def test_blake2s_vectors(self): |
| 926 | for msg, key, md in read_vectors('blake2s'): |
| 927 | key = bytes.fromhex(key) |
| 928 | self.check('blake2s', msg, md, key=key) |
| 929 | |
| 930 | @requires_sha3 |
| 931 | def test_case_sha3_224_0(self): |
nothing calls this directly
no test coverage detected