(&mut self, dest: &mut [u8])
| 381 | } |
| 382 | |
| 383 | fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), rand_core::Error> { |
| 384 | self.fill_bytes(dest); |
| 385 | Ok(()) |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | impl rand_core::CryptoRng for TranscriptRng {} |
nothing calls this directly
no test coverage detected