Do update and final in one method
(self, input)
| 70 | return buffer.raw[0:i.value] |
| 71 | |
| 72 | def ciphering(self, input): |
| 73 | """ |
| 74 | Do update and final in one method |
| 75 | """ |
| 76 | buff = self.update(input) |
| 77 | return buff + self.final() |
| 78 | |
| 79 | def __del__(self): |
| 80 | if OpenSSL._hexversion > 0x10100000 and not OpenSSL._libreSSL: |
no test coverage detected