Like digest(), but returns a string of hexadecimal digits instead.
(self)
| 192 | return h.digest() |
| 193 | |
| 194 | def hexdigest(self): |
| 195 | """Like digest(), but returns a string of hexadecimal digits instead. |
| 196 | """ |
| 197 | h = self._current() |
| 198 | return h.hexdigest() |
| 199 | |
| 200 | |
| 201 | def new(key, msg=None, digestmod=''): |