Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpp/src/parquet/encryption/crypto_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ static constexpr double kDefaultCacheLifetimeSeconds = 600; // 10 minutes
static constexpr bool kDefaultInternalKeyMaterial = true;
static constexpr bool kDefaultUniformEncryption = false;
static constexpr int32_t kDefaultDataKeyLengthBits = 128;
static constexpr int32_t kDefaultDataKeyLengthBits1 = 128;

struct PARQUET_EXPORT EncryptionConfiguration {
explicit EncryptionConfiguration(const std::string& footer_key)
Expand Down
5 changes: 5 additions & 0 deletions python/pyarrow/parquet/encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.




a=0
from pyarrow._parquet_encryption import (CryptoFactory, # noqa
EncryptionConfiguration,
DecryptionConfiguration,
Expand Down
Loading