Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 490 Bytes

File metadata and controls

18 lines (12 loc) · 490 Bytes

Aes Crypto

AppVeyor:Build status

Travis: Build status

An AES crypto library for .Net vNext

using CodeComb.Security.Aes;

...

var aes = new AesCrypto();
var x = aes.Encrypt("abc");
var y = aes.Decrypt(x);
Console.WriteLine("abc" == y ? "Yes" : "No");