OTPNitro
 All Classes Files Functions Variables Macros
crypto.h
Go to the documentation of this file.
1 #include <iostream>
2 
3 using namespace std;
4 
8 class Crypto {
9  void replaceAll(string&, const string&, const string&);
10 
11  public:
12  string decrypt(string,string);
13  string encrypt(string,string);
14 };
15