(&mut self, label: &[u8], dest: &mut [u8])
| 94 | } |
| 95 | |
| 96 | fn challenge_bytes_without_static_label(&mut self, label: &[u8], dest: &mut [u8]) { |
| 97 | self.merlin |
| 98 | .challenge_bytes_with_non_static_label(label, dest) |
| 99 | } |
| 100 | |
| 101 | fn challenge_scalar<F: Field>(&mut self, label: &'static [u8]) -> F { |
| 102 | // Reduce a double-width scalar to ensure a uniform distribution |
nothing calls this directly
no test coverage detected