(&mut self)
| 158 | |
| 159 | impl<E: Pairing> Zeroize for PoKBBSSignatureG1<E> { |
| 160 | fn zeroize(&mut self) { |
| 161 | self.signature.zeroize(); |
| 162 | self.unrevealed_messages |
| 163 | .values_mut() |
| 164 | .for_each(|v| v.zeroize()) |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | impl<E: Pairing> Drop for PoKBBSSignatureG1<E> { |