예제 #1
0
 public AesCtr(byte[] key, ulong partitionID, ulong initialCount) : this( key )
 {
     this.counter = new AesCounter(partitionID, initialCount);
 }
예제 #2
0
 public AesCtr(byte[] key, byte[] iv) : this( key )
 {
     this.counter = new AesCounter(iv);
 }