cypher.h 662 B

123456789101112131415161718192021222324252627
  1. /*
  2. This file contains the cypher used by the quickcypher program.
  3. Edit the cypher rows, compile the program and then securely delete this file
  4. (using, for example, `shred -u`, etc) in order to remove obvious traces of
  5. how your cypher is configured.
  6. Note that if someone does get access to your binary, they can decompile it or
  7. inspect it with a hex editor and may be able to see your cypher's rows there
  8. regardless.
  9. */
  10. #include <string>
  11. #ifndef CYPHER_H
  12. #define CYPHER_H
  13. namespace cypher {
  14. // Change these into something strong! These examples are garbage.
  15. std::string row1 = "tenis";
  16. std::string row2 = "polar";
  17. } // namespace cypher
  18. #endif