Contains DSA private and public key
Inheritance: Key, IDisposable
示例#1
0
 public void GTest()
 {
     DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
     BigInteger actual;
     actual = target.G;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#2
0
 public void KeyLengthTest()
 {
     DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
     int actual;
     actual = target.KeyLength;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#3
0
 public void DsaKeyConstructorTest2()
 {
     BigInteger p = new BigInteger(); // TODO: Initialize to an appropriate value
     BigInteger q = new BigInteger(); // TODO: Initialize to an appropriate value
     BigInteger g = new BigInteger(); // TODO: Initialize to an appropriate value
     BigInteger y = new BigInteger(); // TODO: Initialize to an appropriate value
     BigInteger x = new BigInteger(); // TODO: Initialize to an appropriate value
     DsaKey target = new DsaKey(p, q, g, y, x);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
示例#4
0
 public void DsaKeyConstructorTest1()
 {
     byte[] data = null; // TODO: Initialize to an appropriate value
     DsaKey target = new DsaKey(data);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
示例#5
0
 public void DsaKeyConstructorTest()
 {
     DsaKey target = new DsaKey();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
示例#6
0
 public void DisposeTest()
 {
     DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
     target.Dispose();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
示例#7
0
 public void PublicTest()
 {
     DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
     BigInteger[] expected = null; // TODO: Initialize to an appropriate value
     BigInteger[] actual;
     target.Public = expected;
     actual = target.Public;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }