Skip to content

Commit 949f26a

Browse files
committed
Create README.md
1 parent 818d376 commit 949f26a

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# StringEncryptor
2+
Compile-time encryption of string's (C++11)
3+
# Example
4+
```c++
5+
#include <iostream>
6+
#include "str_encryptor.hpp"
7+
8+
using namespace std;
9+
10+
void main(void)
11+
{
12+
cout << cryptor::create("Hello, World!").decrypt() << endl;
13+
14+
cin.get();
15+
}
16+
```

0 commit comments

Comments
 (0)