MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_blake2s_vectors

Method test_blake2s_vectors

Lib/test/test_hashlib.py:925–928  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 3

checkMethod · 0.95
read_vectorsFunction · 0.85
fromhexMethod · 0.45

Tested by

no test coverage detected