Mercurial > public > cpp-enigma
diff enigma/enigma_utils.h @ 12:424111a36ed7
Created enigma_machine::process_data() for some speed improvements.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 01 Jul 2012 12:53:10 -0500 |
parents | 2792ca4ffa84 |
children |
line wrap: on
line diff
--- a/enigma/enigma_utils.h Fri Jun 29 23:20:33 2012 -0500 +++ b/enigma/enigma_utils.h Sun Jul 01 12:53:10 2012 -0500 @@ -22,6 +22,9 @@ // Removes spaces from a string and returns the resulting string: std::string remove_spaces(const std::string& s); + + // Removes spaces & converts to signal numbers: + std::string preprocess_ciphertext(const std::string& s); } #endif