Implements PKCS5 cipher padding
Inheritance: CipherPadding
Example #1
0
 [Ignore] // placeholder for actual test
 public void PadTest()
 {
     PKCS5Padding target = new PKCS5Padding(); // TODO: Initialize to an appropriate value
     int blockSize = 0; // TODO: Initialize to an appropriate value
     byte[] input = null; // TODO: Initialize to an appropriate value
     byte[] expected = null; // TODO: Initialize to an appropriate value
     byte[] actual;
     actual = target.Pad(blockSize, input);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #2
0
 public void PKCS5PaddingConstructorTest()
 {
     PKCS5Padding target = new PKCS5Padding();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #3
0
 public void SetUp()
 {
     _padding = new PKCS5Padding();
 }