Append a prover's `message` to the transcript. The `label` parameter is metadata about the message, and is also appended to the transcript. See the [Transcript Protocols](https://merlin.cool/use/protocol.html) section of the Merlin website for details on labels.
(&mut self, label: &'static [u8], message: &[u8])
| 99 | /// Protocols](https://merlin.cool/use/protocol.html) section of |
| 100 | /// the Merlin website for details on labels. |
| 101 | pub fn append_message(&mut self, label: &'static [u8], message: &[u8]) { |
| 102 | self.append_message_with_non_static_label(label, message) |
| 103 | } |
| 104 | |
| 105 | pub fn append_message_with_non_static_label(&mut self, label: &[u8], message: &[u8]) { |
| 106 | let data_len = encode_usize_as_u32(message.len()); |