(self, data)
| 162 | self.Verifier.verify(data, sig) |
| 163 | |
| 164 | def encrypt(self, data): |
| 165 | if self.is_encrypted: |
| 166 | assert len(data) % self.Encryptor.plain_block_size() == 0 |
| 167 | return self.Encryptor.encrypt(data) |
| 168 | return data |
| 169 | |
| 170 | def decrypt(self, data): |
| 171 | if self.is_encrypted: |
nothing calls this directly
no test coverage detected