Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Decryptor"/> class.
 /// </summary>
 /// <param name="algId">The algorithm to decrypt data.</param>
 public Decryptor(EncryptionAlgorithm algId)
 {
     transformer = new DecryptTransformer(algId);
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="Decryptor"/> class.
        /// </summary>
        /// <param name="algId">The algorithm to decrypt data.</param>
		public Decryptor(EncryptionAlgorithm algId)
		{
			transformer = new DecryptTransformer(algId);
		}