source: network-game/server/crypt.h@ 36082e8

Last change on this file since 36082e8 was e3535b3, checked in by dportnoy <dmp1488@…>, 12 years ago

Initial commit for server

  • Property mode set to 100644
File size: 138 bytes
RevLine 
[e3535b3]1#include <string>
2
3using namespace std;
4
5class Crypt
6{
7public:
8 Crypt();
9 ~Crypt();
10
11 string encrypt(string);
12 string decrypt(string);
13};
Note: See TracBrowser for help on using the repository browser.