(&mut self, data: &[u8], more: bool)
| 87 | } |
| 88 | |
| 89 | pub fn meta_ad(&mut self, data: &[u8], more: bool) { |
| 90 | self.begin_op(FLAG_M | FLAG_A, more); |
| 91 | self.absorb(data); |
| 92 | } |
| 93 | |
| 94 | pub fn ad(&mut self, data: &[u8], more: bool) { |
| 95 | self.begin_op(FLAG_A, more); |