System.Security.Cryptography.Rijndael
There are 1 entries for the tag
System.Security.Cryptography.Rijndael
Una classe Helper per l'algoritmo di cifratura simmetrico System.Security.Cryptography.Rijndael , magari può tornare utile: 1 public class RijndaelHelper
2 {
3 private byte[] _IV = null;
4 private byte[] _key = null;
5 private Rijndael _rijndael = null;
6 private string _lastExceptionDescription = "";
7
8 public string LastExceptionDescription
9 {
10 ...