Implements Serpent cipher algorithm.
Inheritance: BlockCipher
Ejemplo n.º 1
0
 [Ignore] // placeholder for actual test
 public void SerpentCipherConstructorTest()
 {
     byte[] key = null; // TODO: Initialize to an appropriate value
     CipherMode mode = null; // TODO: Initialize to an appropriate value
     CipherPadding padding = null; // TODO: Initialize to an appropriate value
     SerpentCipher target = new SerpentCipher(key, mode, padding);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Ejemplo n.º 2
0
 [Ignore] // placeholder for actual test
 public void EncryptBlockTest()
 {
     byte[] key = null; // TODO: Initialize to an appropriate value
     CipherMode mode = null; // TODO: Initialize to an appropriate value
     CipherPadding padding = null; // TODO: Initialize to an appropriate value
     SerpentCipher target = new SerpentCipher(key, mode, padding); // 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.EncryptBlock(inputBuffer, inputOffset, inputCount, outputBuffer, outputOffset);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }