Convenience method for appending a `u64` 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. # Implementation Calls `append_message` with the 8-byte little-endian encoding of `x`.
(&mut self, label: &'static [u8], x: u64)
| 162 | /// Calls `append_message` with the 8-byte little-endian encoding |
| 163 | /// of `x`. |
| 164 | pub fn append_u64(&mut self, label: &'static [u8], x: u64) { |
| 165 | self.append_message(label, &encode_u64(x)); |
| 166 | } |
| 167 | |
| 168 | /// Deprecated. This function was renamed to |
| 169 | /// [`append_u64`](Transcript::append_u64). |
no test coverage detected