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)
| 194 | return h |
| 195 | |
| 196 | def digest(self): |
| 197 | """Return the hash value of this hashing object. |
| 198 | |
| 199 | This returns the hmac value as bytes. The object is |
| 200 | not altered in any way by this function; you can continue |
| 201 | updating the object after calling this function. |
| 202 | """ |
| 203 | h = self._current() |
| 204 | return h.digest() |
| 205 | |
| 206 | def hexdigest(self): |
| 207 | """Like digest(), but returns a string of hexadecimal digits instead. |