WHY2/README.md

48 lines
1.7 KiB
Markdown
Raw Normal View History

2022-03-20 18:12:25 +01:00
# WHY2 Encryption System
*Yeah.*
This project is made 'like a library', so compiling is useless... :)
### Table of contents
- [Using in Your projects](#using-in-your-projects)
- [Example of code](#example-of-code)
- [Example programs](#example-programs)
2022-03-21 19:29:30 +01:00
- WHY2 in another languages
- [JavaScript](#javascript)
2022-03-20 18:12:25 +01:00
## Using in Your projects
2022-04-06 18:57:02 +02:00
Run `configure.sh` and you'll be good to go.
2022-03-20 18:12:25 +01:00
To **encrypt** text, use function `encryptText()` from file `include/encrypter.h`.
To **decrypt** text, use function `decryptText()` from file `include/decrypter.h`.
Jump to [examples](#examples) if you're not sure, how to use.
## Example of code
- Encryption:
```c
//FIRST VARIANT
2022-04-23 18:38:24 +02:00
char *yourText = encryptText("Put here text, you want encrypt...", "tzXlZGxkhfYOvRthqokDrmGFyDMylgmeIlrJTpVAwuqrLjABXM"); //The second thing is Your **key**. (The key must be at least 50 characters long!)
2022-03-20 18:12:25 +01:00
//SECOND VARIANT
char *yourText = encryptText("Put here text, you want encrypt...", NULL); //See? You don't have to use Your key. Program will automatically generate one for you. It will be printed out, so save it somewhere.
```
- Decryption:
```c
char *yourText = decryptText("158.-83.9388.-14.57.8419.113.-98.10576", "tzXlZGxkhfYOvRthqokDrmGFyDMylgmeIlrJTpVAwuqrLjABXM"); //First parameter is Your encrypted text, the second is key you want to use for decryption it.
```
## Example programs
2022-03-24 18:42:14 +01:00
Uhm... There aren't any examples (for now)... We will maybe create some... Later...
2022-03-21 19:29:30 +01:00
## JavaScript
2022-03-24 18:42:14 +01:00
You can found the JS remake [>> RIGHT HERE <<](https://github.com/ENDev-WHY2/WHY2-Encryption-System/tree/js). Thanks, [@SebestikCZ](https://github.com/SebestikCZ) <3