Wrap the the plain text key data Args: key_data (bytes): Key data to wrap Returns: bytes: Wrapped key
(self, key_data)
| 52 | raise NotImplementedError() |
| 53 | |
| 54 | def wrap_key(self, key_data): |
| 55 | """ |
| 56 | Wrap the the plain text key data |
| 57 | |
| 58 | Args: |
| 59 | key_data (bytes): Key data to wrap |
| 60 | |
| 61 | Returns: |
| 62 | bytes: Wrapped key |
| 63 | """ |
| 64 | raise NotImplementedError() |
| 65 | |
| 66 | def unwrap_key(self, wrapped_key): |
| 67 | """ |
no outgoing calls