Return a int digest for this hash.
(self)
| 94 | return self.msg_len and urlsafe_b64encode(self.digest()).decode("utf-8") |
| 95 | |
| 96 | def intdigest(self): |
| 97 | """ |
| 98 | Return a int digest for this hash. |
| 99 | """ |
| 100 | return self.msg_len and int(bin_to_num(self.digest())) |
| 101 | |
| 102 | |
| 103 | # for FIPS support, we declare that "usedforsecurity" is False |
nothing calls this directly
no test coverage detected