No Description

cypher.h 174B

123456789101112
  1. #ifndef CYPHER_H
  2. #define CYPHER_H
  3. #include <string>
  4. using namespace std;
  5. string cypher(string, string) ;
  6. string decypher(string message, string key);
  7. #endif // CYPHER_H