| 55 | } |
| 56 | |
| 57 | void TestOnlyInServerWrapKms::StartKeyRotation( |
| 58 | const std::unordered_map<std::string, SecureString>& new_master_key_map) { |
| 59 | if (new_master_key_map.empty()) { |
| 60 | throw ParquetException("No encryption key list"); |
| 61 | } |
| 62 | wrapping_master_key_map_ = new_master_key_map; |
| 63 | } |
| 64 | |
| 65 | void TestOnlyInServerWrapKms::FinishKeyRotation() { |
| 66 | unwrapping_master_key_map_ = wrapping_master_key_map_; |
nothing calls this directly
no test coverage detected