(&mut self, data_len: u64, compress: impl FnMut(&Array<u8, BS>))
| 403 | /// big-endian byte order. |
| 404 | #[inline] |
| 405 | pub fn len64_padding_be(&mut self, data_len: u64, compress: impl FnMut(&Array<u8, BS>)) { |
| 406 | self.digest_pad(0x80, &data_len.to_be_bytes(), compress); |
| 407 | } |
| 408 | |
| 409 | /// Pad message with 0x80, zeros and 64-bit message length using |
| 410 | /// little-endian byte order. |