https://github.com/single9/rc4
RC4 Algorithm.
https://github.com/single9/rc4
Last synced: 8 months ago
JSON representation
RC4 Algorithm.
- Host: GitHub
- URL: https://github.com/single9/rc4
- Owner: single9
- Archived: true
- Created: 2015-04-08T09:47:03.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-08T09:57:58.000Z (about 11 years ago)
- Last Synced: 2025-01-11T14:45:08.129Z (over 1 year ago)
- Language: C++
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RC4
RC4 Algorithm.
## Description
A RC4 algorithm practice.
Reference
- RC4 Wiki: http://en.wikipedia.org/wiki/RC4
## Usage
### Create Instance
RC4 rc4;
### Encrypt/Decrypt
string out = rc4.doRC4(string input, string key);
You can see example in main.cpp