From a2e399213f9c1002c600c04546ba67eca47a2fb1 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Tue, 10 Dec 2024 16:09:07 +0100 Subject: [PATCH] Remove WIpeOut from nossl implementation --- cpp/src/parquet/encryption/encryption_internal_nossl.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpp/src/parquet/encryption/encryption_internal_nossl.cc b/cpp/src/parquet/encryption/encryption_internal_nossl.cc index 2a8162ed3964b..cc1bef14c9572 100644 --- a/cpp/src/parquet/encryption/encryption_internal_nossl.cc +++ b/cpp/src/parquet/encryption/encryption_internal_nossl.cc @@ -38,8 +38,6 @@ int32_t AesEncryptor::SignedFooterEncrypt(::arrow::util::span foo return -1; } -void AesEncryptor::WipeOut() { ThrowOpenSSLRequiredException(); } - int32_t AesEncryptor::CiphertextLength(int64_t plaintext_len) const { ThrowOpenSSLRequiredException(); return -1; @@ -68,8 +66,6 @@ int32_t AesDecryptor::Decrypt(::arrow::util::span ciphertext, return -1; } -void AesDecryptor::WipeOut() { ThrowOpenSSLRequiredException(); } - AesDecryptor::~AesDecryptor() {} std::unique_ptr AesEncryptor::Make(ParquetCipher::type alg_id,