Encryption configuration 1: Encrypt all columns and the footer with the same key. (uniform encryption)
| 91 | // Encryption configuration 1: Encrypt all columns and the footer with the same key. |
| 92 | // (uniform encryption) |
| 93 | TEST_F(TestEncryptionConfiguration, UniformEncryption) { |
| 94 | FileEncryptionProperties::Builder file_encryption_builder_1(kFooterEncryptionKey_); |
| 95 | |
| 96 | this->EncryptFile(file_encryption_builder_1.footer_key_metadata("kf")->build(), |
| 97 | "tmp_uniform_encryption.parquet.encrypted"); |
| 98 | } |
| 99 | |
| 100 | // Encryption configuration 2: Encrypt two columns and the footer, with different keys. |
| 101 | TEST_F(TestEncryptionConfiguration, EncryptTwoColumnsAndTheFooter) { |
nothing calls this directly
no test coverage detected