Skip to content

KroneckerX/InfSharp-Security

Repository files navigation

InfSharp-Security Build Status

InfSharp-Security

CSharp Encryption Library

Example

string cipheredText = AesHmac.EncryptString(plaintText, passwordText);
string plaintText = AesHmac.DecryptString(cipheredText, passwordText);

or

AesHmac aesHmac = new AesHmac(passwordText);
string cipheredText = aesHmac.Encrypt(plainText);
string plainText = aesHmac.Decrypt(cipheredText);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages