Like digest(), but returns a string of hexadecimal digits instead.
(self)
| 159 | return h.digest() |
| 160 | |
| 161 | def hexdigest(self): |
| 162 | """Like digest(), but returns a string of hexadecimal digits instead. |
| 163 | """ |
| 164 | h = self._current() |
| 165 | return h.hexdigest() |
| 166 | |
| 167 | def new(key, msg=None, digestmod=''): |
| 168 | """Create a new hashing object and return it. |
no test coverage detected