| 7 | #include "EncryptionUtil.h" |
| 8 | |
| 9 | static std::string encryptDecrypt(const std::string & value) { |
| 10 | char key = 'Q'; |
| 11 | std::string rotation; |
| 12 | rotation.reserve(value.size()); |
| 13 | for(const auto chr : value) { |
| 14 | rotation.push_back(chr ^ key); |
| 15 | } |
| 16 | return rotation; |
| 17 | } |
| 18 | |
| 19 | namespace EncryptionUtil { |
| 20 |