This commit is contained in:
Leonetienne 2021-12-06 03:36:38 +01:00
parent 46fb63c743
commit 2a8035b7fe

View File

@ -26,6 +26,9 @@ It's pretty ghetto, you know?
* For data obfuscation
* If your only other option would be no encryption at all
### I am not kidding, don't use this for critical stuff! Homebrew ciphers are most often shit!
Especially mine!🦯
## How do i use this?
##### Working with strings
```c++
@ -44,9 +47,6 @@ const std::string decrypted = GhettoCryptWrapper::DecryptString(encrypted, "pass
std::cout << decrypted << std::endl;
```
### I am not kidding, don't use this for critical stuff! Homebrew ciphers are most often shit!
Especially mine!🦯
##### Working with files
```c++
using namespace GhettoCipher;