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)
| 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. |
no test coverage detected