Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2005-11-09 01:26:40 +0300
committerSebastien Pouliot <sebastien@ximian.com>2005-11-09 01:26:40 +0300
commitb4a31ac0235daa93234f31713453c4313299141f (patch)
tree8ccf44a4d0b043554139bef8aa8c0536f422da7d /mcs/class/System/System.Security.Cryptography.X509Certificates
parentce705a04252560916ab3a9fe5287b235554bcbf6 (diff)
2005-11-08 Sebastien Pouliot <sebastien@ximian.com>
* OpenFlags.cs: Removed extra [Serializable] (not in 2.0). * StoreLocation.cs: Removed extra [Serializable] (not in 2.0). * StoreName.cs: Removed extra [Serializable] (not in 2.0). * X500DistinguishedNameFlags.cs: Removed extra [Serializable] (!2.0). * X509ChainStatusFlags.cs: Removed extra [Serializable] (not in 2.0). * X509FindType.cs: Removed extra [Serializable] (not in 2.0). * X509IncludeOption.cs: Removed extra [Serializable] (not in 2.0). * X509RevocationFlag.cs: Removed extra [Serializable] (not in 2.0). * X509RevocationMode.cs: Removed extra [Serializable] (not in 2.0). * X509SubjectKeyIdentifierHashAlgorithm.cs: Removed extra [Serializable] (not in 2.0). * X509VerificationFlags.cs: Removed extra [Serializable] (not in 2.0). svn path=/trunk/mcs/; revision=52747
Diffstat (limited to 'mcs/class/System/System.Security.Cryptography.X509Certificates')
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog15
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/OpenFlags.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/StoreLocation.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/StoreName.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs3
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509FindType.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509IncludeOption.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs3
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationMode.cs5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs3
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs5
12 files changed, 34 insertions, 30 deletions
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
index d48f5633e82..3d24210a348 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
@@ -1,3 +1,18 @@
+2005-11-08 Sebastien Pouliot <sebastien@ximian.com>
+
+ * OpenFlags.cs: Removed extra [Serializable] (not in 2.0).
+ * StoreLocation.cs: Removed extra [Serializable] (not in 2.0).
+ * StoreName.cs: Removed extra [Serializable] (not in 2.0).
+ * X500DistinguishedNameFlags.cs: Removed extra [Serializable] (!2.0).
+ * X509ChainStatusFlags.cs: Removed extra [Serializable] (not in 2.0).
+ * X509FindType.cs: Removed extra [Serializable] (not in 2.0).
+ * X509IncludeOption.cs: Removed extra [Serializable] (not in 2.0).
+ * X509RevocationFlag.cs: Removed extra [Serializable] (not in 2.0).
+ * X509RevocationMode.cs: Removed extra [Serializable] (not in 2.0).
+ * X509SubjectKeyIdentifierHashAlgorithm.cs: Removed extra
+ [Serializable] (not in 2.0).
+ * X509VerificationFlags.cs: Removed extra [Serializable] (not in 2.0).
+
2005-09-27 Sebastien Pouliot <sebastien@ximian.com>
* X509Certificate2Collection.cs: Class is not sealed. Removed Select
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/OpenFlags.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/OpenFlags.cs
index de7787a4abc..9e0c31b6242 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/OpenFlags.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/OpenFlags.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,12 +27,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
[Flags]
- [Serializable]
public enum OpenFlags {
ReadOnly,
ReadWrite,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreLocation.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreLocation.cs
index 8ab376a0d4f..a4a71dc3829 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreLocation.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreLocation.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum StoreLocation {
CurrentUser = 1,
LocalMachine = 2
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreName.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreName.cs
index 81ec9286215..5386186d8c2 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreName.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/StoreName.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum StoreName {
AddressBook = 1,
AuthRoot = 2,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs
index c0b5af1d57d..f3e2df67278 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs
@@ -26,12 +26,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
[Flags]
- [Serializable]
public enum X500DistinguishedNameFlags {
None = 0,
Reversed = 1,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs
index 2e1d5a1369b..9fb1dde7746 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,12 +27,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
[Flags]
- [Serializable]
public enum X509ChainStatusFlags {
NoError = 0,
NotTimeValid = 1,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509FindType.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509FindType.cs
index 28f40417cb0..7711fd96244 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509FindType.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509FindType.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum X509FindType {
FindByThumbprint,
FindBySubjectName,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509IncludeOption.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509IncludeOption.cs
index 78b3b5c3dcf..345eb9341ea 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509IncludeOption.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509IncludeOption.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum X509IncludeOption {
None,
ExcludeRoot,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs
index 92d934f1dbe..119b7349b54 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum X509RevocationFlag {
EndCertificateOnly = 0,
EntireChain = 1,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationMode.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationMode.cs
index 64da78a5c88..123b15af02a 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationMode.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509RevocationMode.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,11 +27,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum X509RevocationMode {
NoCheck,
Online,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs
index 46717264c0f..8db37c08581 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs
@@ -26,11 +26,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
- [Serializable]
public enum X509SubjectKeyIdentifierHashAlgorithm {
Sha1 = 0,
ShortSha1 = 1,
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs
index b2e38a12ebd..956f9a5474c 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs
@@ -5,7 +5,7 @@
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -27,12 +27,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0 && SECURITY_DEP
+#if NET_2_0
namespace System.Security.Cryptography.X509Certificates {
[Flags]
- [Serializable]
public enum X509VerificationFlags {
NoFlag = 0,
IgnoreNotTimeValid = 1,