| 455 | } |
| 456 | |
| 457 | Status EncryptionKey::Decrypt(const uint8_t* data, int64_t len, uint8_t* out, |
| 458 | int64_t* out_len) { |
| 459 | return EncryptInternal(false, data, len, out, out_len); |
| 460 | } |
| 461 | |
| 462 | Status EncryptionKey::EncryptInternal( |
| 463 | bool encrypt, const uint8_t* data, int64_t len, uint8_t* out, int64_t* out_len) { |
no outgoing calls