Implements CTR cipher mode
Inheritance: CipherMode
Esempio n. 1
0
 [Ignore] // placeholder for actual test
 public void DecryptBlockTest()
 {
     byte[] iv = null; // TODO: Initialize to an appropriate value
     CtrCipherMode target = new CtrCipherMode(iv); // TODO: Initialize to an appropriate value
     byte[] inputBuffer = null; // TODO: Initialize to an appropriate value
     int inputOffset = 0; // TODO: Initialize to an appropriate value
     int inputCount = 0; // TODO: Initialize to an appropriate value
     byte[] outputBuffer = null; // TODO: Initialize to an appropriate value
     int outputOffset = 0; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.DecryptBlock(inputBuffer, inputOffset, inputCount, outputBuffer, outputOffset);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 2
0
 [Ignore] // placeholder for actual test
 public void CtrCipherModeConstructorTest()
 {
     byte[] iv = null; // TODO: Initialize to an appropriate value
     CtrCipherMode target = new CtrCipherMode(iv);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }