Return current digest bytes as a hex string. Note: This can be called multiple times.
(self)
| 89 | return data |
| 90 | |
| 91 | def hexdigest(self): |
| 92 | """ |
| 93 | Return current digest bytes as a hex string. |
| 94 | |
| 95 | Note: This can be called multiple times. |
| 96 | """ |
| 97 | return self.hash.hexdigest() |
| 98 | |
| 99 | def update(self, data: bytes): |
| 100 | self.hash.update(data) |
no outgoing calls