Return a bytes string digest for this hash.
(self)
| 74 | """ |
| 75 | |
| 76 | def digest(self): |
| 77 | """ |
| 78 | Return a bytes string digest for this hash. |
| 79 | """ |
| 80 | if not self.msg_len: |
| 81 | return |
| 82 | return self.binh.digest()[: self.digest_size] |
| 83 | |
| 84 | def hexdigest(self): |
| 85 | """ |
no outgoing calls