| 444 | }; |
| 445 | |
| 446 | int32_t AesDecryptor::Decrypt(std::span<const uint8_t> ciphertext, |
| 447 | std::span<const uint8_t> key, std::span<const uint8_t> aad, |
| 448 | std::span<uint8_t> plaintext) { |
| 449 | return impl_->Decrypt(ciphertext, key, aad, plaintext); |
| 450 | } |
| 451 | |
| 452 | AesDecryptor::~AesDecryptor() {} |
| 453 |