コード例 #1
0
ファイル: Encryptor.cs プロジェクト: kouweizhong/ajaxnet
 /// <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
ファイル: Encryptor.cs プロジェクト: percyboy/ajaxnet
 /// <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);
 }