An open API service indexing awesome lists of open source software.

https://github.com/single9/rc4

RC4 Algorithm.
https://github.com/single9/rc4

Last synced: 8 months ago
JSON representation

RC4 Algorithm.

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