Retrieve result and reset hasher instance.
(&mut self)
| 100 | impl<D: Digest + FixedOutputReset, R: io::Read> HashReader<D, R> { |
| 101 | /// Retrieve result and reset hasher instance. |
| 102 | pub fn finalize_reset(&mut self) -> Output<D> { |
| 103 | Digest::finalize_reset(&mut self.hasher) |
| 104 | } |
| 105 | |
| 106 | /// Rrite result into provided array and reset the hasher instance. |
| 107 | pub fn finalize_into_reset(&mut self, out: &mut Output<D>) { |
nothing calls this directly
no outgoing calls
no test coverage detected