(&mut self, label: &[u8], bytes: &[u8])
| 85 | } |
| 86 | |
| 87 | fn append_message_without_static_label(&mut self, label: &[u8], bytes: &[u8]) { |
| 88 | self.merlin |
| 89 | .append_message_with_non_static_label(label, bytes) |
| 90 | } |
| 91 | |
| 92 | fn challenge_bytes(&mut self, label: &'static [u8], dest: &mut [u8]) { |
| 93 | self.merlin.challenge_bytes(label, dest) |
nothing calls this directly
no test coverage detected