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