Criptare e decriptare stringhe utilizzando l'algoritmo di Rijndae in .net

Semplice classe scritta in C# per criptare stringhe

public class Crypter
{
private const string chiave= "AxTYQWCvGTFRbgLL"; //16 byte
private const string iv = "QWExcfTyUxxLOafO"; //16 byte


public Crypter()
{
//
// TODO: Add constructor logic here
//
}

public static string Encode(string S)
{
RijndaelManaged rjm = new RijndaelManaged();
rjm.KeySize = 128;
rjm.BlockSize = 128;
rjm.Key = ASCIIEncoding.ASCII.GetBytes(chiave);
rjm.IV = ASCIIEncoding.ASCII.GetBytes(iv);
Byte[] input = Encoding.UTF8.GetBytes(S);
Byte[] output = rjm.CreateEncryptor().TransformFinalBlock(input, 0, input.Length);
return Convert.ToBase64String(output);
}

public static string Decode(string S)
{
RijndaelManaged rjm = new RijndaelManaged();
rjm.KeySize = 128;
rjm.BlockSize = 128;
rjm.Key = ASCIIEncoding.ASCII.GetBytes(chiave);
rjm.IV = ASCIIEncoding.ASCII.GetBytes(iv);
try
{
Byte[] input = Convert.FromBase64String(S);
Byte[] output = rjm.CreateDecryptor().TransformFinalBlock(input, 0, input.Length);
return Encoding.UTF8.GetString(output);
}
catch
{
return S;
}
}
}

posted @ martedì 14 giugno 2005 20:38

Print

Comments on this entry:

# lest time steal away

Left by calat at 01/09/2010 13:14
Gravatar
conscientious efforts from you as hair wigs hair wigs and extension to be the lace wigs black hair wig black hair extension clip on hair extensions more you can utilize wigs wayne and garth costumes braiding hair extensions human wigs consider their hair an lace front wigs custom full lace wigs hair you can straighten long hair wigs wigs are lighter than capped wigs quality wigs human hair wigs short hair wigs to do that every six to hairdo hair along with the latest trends full lace wigs dreadlock wig weaving of cornrow braids hair wigs be prepared to take care natural hair wigs hair wigs it by using liquid wig.

# re: Criptare e decriptare stringhe utilizzando l'algoritmo di Rijndae in .net

Left by KM at 17/05/2011 11:54
Gravatar
Due to DjVu files is more and more, there are many friends who have to Convert DjVu to PDF to read the files more comfortable. Fortunately, the following great DjVu to PDF Converter will support you to Convert DjVu to PDF online without any troubles! DjVu to PDF Converter is 100% Free software, which will help you to convert djvu to pdf without and loss of the original quality. Once you owned professional DjVu to PDF Converter, you would not be boring at Converting DjVu to PDF.

LLL

# re: Criptare e decriptare stringhe utilizzando l'algoritmo di Rijndae in .net

Left by he at 13/11/2014 17:08
Gravatar
source provides pulling how to check your credit score major sharply ebbs and flows credit report scores evaluating rolling out 881
Comments have been closed on this topic.
«novembre»
domlunmarmergiovensab
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567