(&mut self, data_len: u64, compress: impl FnMut(&Array<u8, BS>))
| 410 | /// little-endian byte order. |
| 411 | #[inline] |
| 412 | pub fn len64_padding_le(&mut self, data_len: u64, compress: impl FnMut(&Array<u8, BS>)) { |
| 413 | self.digest_pad(0x80, &data_len.to_le_bytes(), compress); |
| 414 | } |
| 415 | |
| 416 | /// Pad message with 0x80, zeros and 128-bit message length using |
| 417 | /// big-endian byte order. |