| 450 | } |
| 451 | |
| 452 | Status EncryptionKey::Encrypt(const uint8_t* data, int64_t len, uint8_t* out, |
| 453 | int64_t* out_len) { |
| 454 | return EncryptInternal(true, data, len, out, out_len); |
| 455 | } |
| 456 | |
| 457 | Status EncryptionKey::Decrypt(const uint8_t* data, int64_t len, uint8_t* out, |
| 458 | int64_t* out_len) { |
no outgoing calls