| 49 | } |
| 50 | |
| 51 | EncryptConfig::EncryptionType EncryptConfig::encryptSensitiveProperties() const { |
| 52 | encryptSensitiveProperties(keys_); |
| 53 | if (keys_.old_key) { |
| 54 | return EncryptionType::RE_ENCRYPT; |
| 55 | } |
| 56 | return EncryptionType::ENCRYPT; |
| 57 | } |
| 58 | |
| 59 | void EncryptConfig::encryptFlowConfig() const { |
| 60 | encrypt_config::ConfigFile properties_file{std::ifstream{propertiesFilePath()}}; |
no test coverage detected