dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime/System/Security/Crypto


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/tests/runtime/System/Security/Cryptography CryptoTestCase.cs,1.10,1.11 SuiteCryptography.cs,1.1,1.2 TestAES.cs,1.4,1.5 TestDES.cs,1.5,1.6 TestMD5.cs,1.3,1.4 TestRC2.cs,1.4,1.5 TestRNG.cs,1.3,1.4 TestSHA1.cs,1.3,1.4 TestSHA256.cs,1.3,1.4 TestSHA384.cs,1.3,1.4 TestSHA512.cs,1.3,1.4 TestTripleDES.cs,1.5,1.6
Date: Wed, 28 May 2003 21:22:44 -0400

Update of 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography
In directory 
subversions:/tmp/cvs-serv18917/tests/runtime/System/Security/Cryptography

Modified Files:
        CryptoTestCase.cs SuiteCryptography.cs TestAES.cs TestDES.cs 
        TestMD5.cs TestRC2.cs TestRNG.cs TestSHA1.cs TestSHA256.cs 
        TestSHA384.cs TestSHA512.cs TestTripleDES.cs 
Log Message:


Add new profile options - CONFIG_COM_INTEROP, CONFIG_CODEDOM,
CONFIG_CRYPTO, CONFIG_X509_CERTIFICATES.


Index: CryptoTestCase.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/CryptoTestCase.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** CryptoTestCase.cs   23 Apr 2003 05:39:50 -0000      1.10
--- CryptoTestCase.cs   29 May 2003 01:22:42 -0000      1.11
***************
*** 26,30 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class CryptoTestCase : TestCase
--- 26,30 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class CryptoTestCase : TestCase
***************
*** 800,802 ****
  }; // CryptoTestCase
  
! #endif // !ECMA_COMPAT
--- 800,802 ----
  }; // CryptoTestCase
  
! #endif // CONFIG_CRYPTO

Index: SuiteCryptography.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/SuiteCryptography.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** SuiteCryptography.cs        29 Nov 2002 04:09:13 -0000      1.1
--- SuiteCryptography.cs        29 May 2003 01:22:42 -0000      1.2
***************
*** 29,33 ****
                        {
                                TestSuite suite = new TestSuite("Cryptography 
Tests");
!                       #if !ECMA_COMPAT
                                suite.AddTests(typeof(TestAES));
                                suite.AddTests(typeof(TestDES));
--- 29,33 ----
                        {
                                TestSuite suite = new TestSuite("Cryptography 
Tests");
!                       #if CONFIG_CRYPTO
                                suite.AddTests(typeof(TestAES));
                                suite.AddTests(typeof(TestDES));

Index: TestAES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestAES.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TestAES.cs  29 Nov 2002 03:42:03 -0000      1.4
--- TestAES.cs  29 May 2003 01:22:42 -0000      1.5
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestAES : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestAES : CryptoTestCase
***************
*** 144,146 ****
  }; // TestAES
  
! #endif // !ECMA_COMPAT
--- 144,146 ----
  }; // TestAES
  
! #endif // CONFIG_CRYPTO

Index: TestDES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestDES.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** TestDES.cs  29 Nov 2002 03:42:03 -0000      1.5
--- TestDES.cs  29 May 2003 01:22:42 -0000      1.6
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestDES : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestDES : CryptoTestCase
***************
*** 352,354 ****
  }; // TestDES
  
! #endif // !ECMA_COMPAT
--- 352,354 ----
  }; // TestDES
  
! #endif // CONFIG_CRYPTO

Index: TestMD5.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestMD5.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestMD5.cs  29 Nov 2002 03:42:03 -0000      1.3
--- TestMD5.cs  29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestMD5 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestMD5 : CryptoTestCase
***************
*** 153,155 ****
  }; // TestMD5
  
! #endif // !ECMA_COMPAT
--- 153,155 ----
  }; // TestMD5
  
! #endif // CONFIG_CRYPTO

Index: TestRC2.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestRC2.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** TestRC2.cs  29 Nov 2002 03:42:03 -0000      1.4
--- TestRC2.cs  29 May 2003 01:22:42 -0000      1.5
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestRC2 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestRC2 : CryptoTestCase
***************
*** 103,105 ****
  }; // TestRC2
  
! #endif // !ECMA_COMPAT
--- 103,105 ----
  }; // TestRC2
  
! #endif // CONFIG_CRYPTO

Index: TestRNG.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestRNG.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestRNG.cs  29 Nov 2002 03:42:03 -0000      1.3
--- TestRNG.cs  29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestRNG : TestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestRNG : TestCase
***************
*** 307,309 ****
  }; // TestRNG
  
! #endif // !ECMA_COMPAT
--- 307,309 ----
  }; // TestRNG
  
! #endif // CONFIG_CRYPTO

Index: TestSHA1.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA1.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestSHA1.cs 29 Nov 2002 03:42:03 -0000      1.3
--- TestSHA1.cs 29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestSHA1 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestSHA1 : CryptoTestCase
***************
*** 97,99 ****
  }; // TestSHA1
  
! #endif // !ECMA_COMPAT
--- 97,99 ----
  }; // TestSHA1
  
! #endif // CONFIG_CRYPTO

Index: TestSHA256.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA256.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestSHA256.cs       29 Nov 2002 03:42:03 -0000      1.3
--- TestSHA256.cs       29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestSHA256 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestSHA256 : CryptoTestCase
***************
*** 101,103 ****
  }; // TestSHA256
  
! #endif // !ECMA_COMPAT
--- 101,103 ----
  }; // TestSHA256
  
! #endif // CONFIG_CRYPTO

Index: TestSHA384.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA384.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestSHA384.cs       29 Nov 2002 03:42:03 -0000      1.3
--- TestSHA384.cs       29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestSHA384 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestSHA384 : CryptoTestCase
***************
*** 106,108 ****
  }; // TestSHA384
  
! #endif // !ECMA_COMPAT
--- 106,108 ----
  }; // TestSHA384
  
! #endif // CONFIG_CRYPTO

Index: TestSHA512.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestSHA512.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** TestSHA512.cs       29 Nov 2002 03:42:03 -0000      1.3
--- TestSHA512.cs       29 May 2003 01:22:42 -0000      1.4
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestSHA512 : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestSHA512 : CryptoTestCase
***************
*** 110,112 ****
  }; // TestSHA512
  
! #endif // !ECMA_COMPAT
--- 110,112 ----
  }; // TestSHA512
  
! #endif // CONFIG_CRYPTO

Index: TestTripleDES.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Security/Cryptography/TestTripleDES.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** TestTripleDES.cs    29 Nov 2002 03:42:03 -0000      1.5
--- TestTripleDES.cs    29 May 2003 01:22:42 -0000      1.6
***************
*** 23,27 ****
  using System.Security.Cryptography;
  
! #if !ECMA_COMPAT
  
  public class TestTripleDES : CryptoTestCase
--- 23,27 ----
  using System.Security.Cryptography;
  
! #if CONFIG_CRYPTO
  
  public class TestTripleDES : CryptoTestCase
***************
*** 322,324 ****
  }; // TestTripleDES
  
! #endif // !ECMA_COMPAT
--- 322,324 ----
  }; // TestTripleDES
  
! #endif // CONFIG_CRYPTO





reply via email to

[Prev in Thread] Current Thread [Next in Thread]