/usr/local/lib64/python3.6/site-packages/pyarrow/include/parquet/encryption
NameSizeModeActions
crypto_factory.h57770644editdlrm
encryption.h196520644editdlrm
file_key_material_store.h12890644editdlrm
file_key_unwrapper.h29190644editdlrm
file_key_wrapper.h35670644editdlrm
key_encryption_key.h22580644editdlrm
key_material.h62470644editdlrm
key_metadata.h40670644editdlrm
key_toolkit.h29860644editdlrm
kms_client.h31740644editdlrm
kms_client_factory.h13190644editdlrm
local_wrap_kms_client.h39800644editdlrm
test_encryption_util.h44390644editdlrm
test_in_memory_kms.h32070644editdlrm
two_level_cache_with_expiration.h51010644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/pyarrow/include/parquet/encryption/key_toolkit.h (2986B)
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. #pragma once #include #include #include "parquet/encryption/key_encryption_key.h" #include "parquet/encryption/kms_client.h" #include "parquet/encryption/kms_client_factory.h" #include "parquet/encryption/two_level_cache_with_expiration.h" #include "parquet/platform.h" namespace parquet { namespace encryption { // KeyToolkit is a utility that keeps various tools for key management (such as key // rotation, kms client instantiation, cache control, etc), plus a number of auxiliary // classes for internal use. class PARQUET_EXPORT KeyToolkit { public: /// KMS client two level cache: token -> KMSInstanceId -> KmsClient TwoLevelCacheWithExpiration>& kms_client_cache_per_token() { return kms_client_cache_; } /// Key encryption key two level cache for wrapping: token -> MasterEncryptionKeyId -> /// KeyEncryptionKey TwoLevelCacheWithExpiration& kek_write_cache_per_token() { return key_encryption_key_write_cache_; } /// Key encryption key two level cache for unwrapping: token -> KeyEncryptionKeyId -> /// KeyEncryptionKeyBytes TwoLevelCacheWithExpiration& kek_read_cache_per_token() { return key_encryption_key_read_cache_; } std::shared_ptr GetKmsClient( const KmsConnectionConfig& kms_connection_config, double cache_entry_lifetime_ms); /// Flush any caches that are tied to the (compromised) access_token void RemoveCacheEntriesForToken(const std::string& access_token); void RemoveCacheEntriesForAllTokens(); void RegisterKmsClientFactory(std::shared_ptr kms_client_factory) { if (kms_client_factory_ != NULL) { throw ParquetException("KMS client factory has already been registered."); } kms_client_factory_ = kms_client_factory; } private: TwoLevelCacheWithExpiration> kms_client_cache_; TwoLevelCacheWithExpiration key_encryption_key_write_cache_; TwoLevelCacheWithExpiration key_encryption_key_read_cache_; std::shared_ptr kms_client_factory_; }; } // namespace encryption } // namespace parquet