Skip to content

Commit

Permalink
Remove WIpeOut from nossl implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Dec 10, 2024
1 parent e773db1 commit a2e3992
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cpp/src/parquet/encryption/encryption_internal_nossl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ int32_t AesEncryptor::SignedFooterEncrypt(::arrow::util::span<const uint8_t> foo
return -1;
}

void AesEncryptor::WipeOut() { ThrowOpenSSLRequiredException(); }

int32_t AesEncryptor::CiphertextLength(int64_t plaintext_len) const {
ThrowOpenSSLRequiredException();
return -1;
Expand Down Expand Up @@ -68,8 +66,6 @@ int32_t AesDecryptor::Decrypt(::arrow::util::span<const uint8_t> ciphertext,
return -1;
}

void AesDecryptor::WipeOut() { ThrowOpenSSLRequiredException(); }

AesDecryptor::~AesDecryptor() {}

std::unique_ptr<AesEncryptor> AesEncryptor::Make(ParquetCipher::type alg_id,
Expand Down

0 comments on commit a2e3992

Please sign in to comment.