Like digest(), but returns a string of hexadecimal digits instead.
(self)
| 204 | return h.digest() |
| 205 | |
| 206 | def hexdigest(self): |
| 207 | """Like digest(), but returns a string of hexadecimal digits instead. |
| 208 | """ |
| 209 | h = self._current() |
| 210 | return h.hexdigest() |
| 211 | |
| 212 | |
| 213 | def new(key, msg=None, digestmod=''): |