(&mut self, label: &'static [u8], message: &[u8])
| 147 | /// transcript-level messages and protocol-level commitments. |
| 148 | #[deprecated(since = "1.1.0", note = "renamed to append_message for clarity.")] |
| 149 | pub fn commit_bytes(&mut self, label: &'static [u8], message: &[u8]) { |
| 150 | self.append_message(label, message); |
| 151 | } |
| 152 | |
| 153 | /// Convenience method for appending a `u64` to the transcript. |
| 154 | /// |
nothing calls this directly
no test coverage detected