(self, enc_alg, key)
| 93 | return OctKey.import_key(raw_data) |
| 94 | |
| 95 | def generate_preset(self, enc_alg, key): |
| 96 | cek = enc_alg.generate_cek() |
| 97 | return {"cek": cek} |
| 98 | |
| 99 | def _check_key(self, key): |
| 100 | if len(key) * 8 != self.key_size: |
nothing calls this directly
no test coverage detected