Skip to content

HagamosVideojuegos/CryptedData

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

CryptedData

C# Class to encrypt your objects or fields in memory

How it's works

It make a random Key and generate a encrypted byte array in memory and It return the decrypted data, It generate a new key in all value sets!

How to use

Make a CryptedData object with the type of your object/field

CryptedData<int> cryptedInt = new CryptedData<int>(0);

Use the value property

cryptedInt.value = 10;
if(cryptedInt.value == 10)
{
    //To do something...
}

Welldone! The hackers can not find the cryptedInt data! (Or it is much difficult!)

About

C# Class for crypt your objects and fields in memory - basic antihack system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages