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

Method digest

tools/python-3.11.9-amd64/Lib/hmac.py:151–159  ·  view source on GitHub ↗

Return the hash value of this hashing object. This returns the hmac value as bytes. The object is not altered in any way by this function; you can continue updating the object after calling this function.

(self)

Source from the content-addressed store, hash-verified

149 return h
150
151 def digest(self):
152 """Return the hash value of this hashing object.
153
154 This returns the hmac value as bytes. The object is
155 not altered in any way by this function; you can continue
156 updating the object after calling this function.
157 """
158 h = self._current()
159 return h.digest()
160
161 def hexdigest(self):
162 """Like digest(), but returns a string of hexadecimal digits instead.

Callers 14

pbkdf2_hmacFunction · 0.80
prfFunction · 0.80
seedMethod · 0.80
_init_oldMethod · 0.80
_currentMethod · 0.80
digestFunction · 0.80
uuid3Function · 0.80
uuid5Function · 0.80
deliver_challengeFunction · 0.80
answer_challengeFunction · 0.80
get_hashMethod · 0.80
get_hashMethod · 0.80

Calls 1

_currentMethod · 0.95

Tested by

no test coverage detected