Finalizes the hash context and returns the hash digest as bytes.
(self)
| 75 | |
| 76 | @abc.abstractmethod |
| 77 | def finalize(self) -> bytes: |
| 78 | """ |
| 79 | Finalizes the hash context and returns the hash digest as bytes. |
| 80 | """ |
| 81 | |
| 82 | @abc.abstractmethod |
| 83 | def copy(self) -> HashContext: |
no outgoing calls