Skip to content

A simple RC5 bytes encryption wrapper.

Notifications You must be signed in to change notification settings

FangCybertron/KuroyamaRC5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

KuroyamaRC5

A simple RC5 bytes encryption wrapper.

How to use

Don't forget to include EncryptValue.h Initializing the Encryption

CEncrypt<int> Foo = new CEncrypt<int>(256);

Using it as normal Variable

printf("%d", Foo); 
// Output 256
Foo  = 1;
// Foo now is 257
CEncrypt<int> Bar = new CEncrypt<int>(100);
Foo  = Bar;
// Foo now is 357

About

A simple RC5 bytes encryption wrapper.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages