SkillAgentSearch skills...

CryptedData

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

Install / Use

/learn @HagamosVideojuegos/CryptedData
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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!)

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated2y ago
Forks2

Languages

C#

Security Score

70/100

Audited on Jul 25, 2023

No findings