2 packages tagged with “'Common”
A simple lib for Encrypt and Decrypt Security.CypherPassWord = "CypherPassWord"; Just call the methode for Encrypt Security.Encrypt(Text,password) Just call the methode for Decrypt Security.Decrypt(Text,password)
A simple nuget for encrypting and decrypting data using AES algorithm in .NET and C# Security.CypherPassWord = "CypherPassWord"; Just call the methode for Encrypt var encriptByteArray = Encryption.Security.Encrypt(content); var encriptHexTest = Encryption.Security.EncryptAsHex(content); Just call the methode for Decrypt var planetext = Encryption.Security.Decrypt(encriptByteArray); var planetext = Encryption.Security.DecryptFromHex(encriptHexTest);