Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site











SourceForge.net Logo

RC4 Encoder

 

RC4 Encoder is a simple and fast stream encoder with quite weak security.

The complete algorhithm description can be found here.

 

The usage is quite simple :

 

#include <StreamCypher/StreamCypher.h>

 

String EncodeWithRC4(String key, String data)

{

    RC4 rc4(key);

    return rc4.Encode(data);

}

 

There are also encoding functions for in-place buffer encoding and for out-of-place buffer encoding; you can also give the key as a buffer/length couple.

See the source code (RC4.h) for details.

 

Do you want to contribute?