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

Method hmac_new_feed

Lib/test/test_hmac.py:317–320  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

315 self.check_object(h, hexdigest, hashname, digest_size, block_size)
316
317 def hmac_new_feed(*args):
318 h = hmac_new_func(key, *args, **hmac_new_kwds)
319 h.update(msg)
320 self.check_hexdigest(h, hexdigest, digest_size)
321
322 with self.subTest('no initial message'):
323 hmac_new_feed()

Callers

nothing calls this directly

Calls 2

check_hexdigestMethod · 0.80
updateMethod · 0.45

Tested by

no test coverage detected