MCPcopy Index your code
hub / github.com/python/cpython / hmac_new_feed

Method hmac_new_feed

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

check_hexdigestMethod · 0.80
updateMethod · 0.45

Tested by

no test coverage detected