(&mut self, label: &'static [u8], x: u64)
| 172 | /// transcript-level messages and protocol-level commitments. |
| 173 | #[deprecated(since = "1.1.0", note = "renamed to append_u64 for clarity.")] |
| 174 | pub fn commit_u64(&mut self, label: &'static [u8], x: u64) { |
| 175 | self.append_u64(label, x); |
| 176 | } |
| 177 | |
| 178 | /// Fill the supplied buffer with the verifier's challenge bytes. |
| 179 | /// |
nothing calls this directly
no test coverage detected