Rrite result into provided array and reset the hasher instance.
(&mut self, out: &mut Output<D>)
| 105 | |
| 106 | /// Rrite result into provided array and reset the hasher instance. |
| 107 | pub fn finalize_into_reset(&mut self, out: &mut Output<D>) { |
| 108 | Digest::finalize_into_reset(&mut self.hasher, out) |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | impl<D: Digest + Reset, R: io::Read> Reset for HashReader<D, R> { |
nothing calls this directly
no outgoing calls
no test coverage detected