コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Encryptor"/> class.
 /// </summary>
 /// <param name="algId">The algorithm to encrypt data.</param>
 public Encryptor(EncryptionAlgorithm algId)
 {
     transformer = new EncryptTransformer(algId);
 }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="Encryptor"/> class.
        /// </summary>
        /// <param name="algId">The algorithm to encrypt data.</param>
		public Encryptor(EncryptionAlgorithm algId)
		{
			transformer = new EncryptTransformer(algId);
		}