MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _init_hmac

Method _init_hmac

tools/python-3.11.9-amd64/Lib/hmac.py:66–69  ·  view source on GitHub ↗
(self, key, msg, digestmod)

Source from the content-addressed store, hash-verified

64 self._init_old(key, msg, digestmod)
65
66 def _init_hmac(self, key, msg, digestmod):
67 self._hmac = _hashopenssl.hmac_new(key, msg, digestmod=digestmod)
68 self.digest_size = self._hmac.digest_size
69 self.block_size = self._hmac.block_size
70
71 def _init_old(self, key, msg, digestmod):
72 if callable(digestmod):

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected