A Library to Crypt and Decript Text in a simply way
$ dotnet add package LT.CriptoA Library to Crypt and Decript Text in a simply way
//Generate an init 16 chars long vector for test
string IV = "abcdefghilmnopqr";
//Generate random Password 16 chars long
string Password = "myPasswordLen_16";
CriptoHelper cripto = new CriptoHelper(IV);
//Encrypt
var stringEncrypted = cripto.EncryptString("Hello", Password);
//Decrypt
var stringDecrypted = ripto.DecryptString(stringEncrypted, Password)