(self, cipher_name, key, iv, op)
| 56 | |
| 57 | class TableCipher(object): |
| 58 | def __init__(self, cipher_name, key, iv, op): |
| 59 | self._encrypt_table, self._decrypt_table = init_table(key) |
| 60 | self._op = op |
| 61 | |
| 62 | def update(self, data): |
| 63 | if self._op: |
nothing calls this directly
no test coverage detected