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-04-24 19:42:31 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-04-24 19:42:31 +0400
commit9e6c973211abf8ce2625aaf8fd6e713ee9826743 (patch)
tree8a0ea7b8818e8682db7ef39e72e9d312f576eb58 /mcs/class/System.Security/System.Security.Cryptography.Pkcs
parentbd933f00fb2c0fa59b2f01dfdae999b257557c73 (diff)
2005-04-24 Sebastien Pouliot <sebastien@ximian.com>
* SubjectIdentifierType.cs: Removed (really) obsolete enum value and [Serializable] attribute. svn path=/trunk/mcs/; revision=43513
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Pkcs')
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog5
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.Pkcs/SubjectIdentifierType.cs8
2 files changed, 7 insertions, 6 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
index f537153e111..f24edb10ab4 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-24 Sebastien Pouliot <sebastien@ximian.com>
+
+ * SubjectIdentifierType.cs: Removed (really) obsolete enum value and
+ [Serializable] attribute.
+
2005-04-23 Sebastien Pouliot <sebastien@ximian.com>
* CmsRecipient.cs, CmsRecipientCollection.cs, CmsSigner.cs,
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SubjectIdentifierType.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SubjectIdentifierType.cs
index 934ebad4b30..30e786cadc0 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SubjectIdentifierType.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SubjectIdentifierType.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
@@ -29,17 +29,13 @@
#if NET_2_0
-using System;
-
namespace System.Security.Cryptography.Pkcs {
- [Serializable]
public enum SubjectIdentifierType {
Unknown,
IssuerAndSerialNumber,
SubjectKeyIdentifier,
- [Obsolete] HashOnly,
- NoSignature = 3
+ NoSignature
}
}