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>2004-07-09 05:58:38 +0400
committerSebastien Pouliot <sebastien@ximian.com>2004-07-09 05:58:38 +0400
commit5639cacb2cc86f6b0927fa2b654fd4dfc1e045aa (patch)
tree356beb0747fc9a55c8dbed2c2a2dd5472bc48a4f /mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs
parent87fcf57b04350f5eba794abf362623924463726c (diff)
2004-07-08 Sebastien Pouliot <sebastien@ximian.com>
* ContentInfo.cs: Added finalizer. * CmsRecipient.cs: New. Replace Pkcs7Recipient (from 1.2). * CmsRecipientCollection.cs: New. Replace Pkcs7RecipientCollection (from 1.2). * CmsRecipientEnumerator.cs: New. Replace Pkcs7RecipientEnumerator (from 1.2). * CmsSigner.cs: New. Replace Pkcs7Signer (from 1.2). * EnvelopedCms.cs: New. Replace EnvelopedPkcs7 (from 1.2). * KeyAgreeRecipientInfo.cs: Fixed internal constructor. * Pkcs9Attribute.cs: Now inherit from AsnEncodedData. Fixed constructors. * Pkcs9DocumentDescription.cs: Sealed class and fixed API. * Pkcs9DocumentName.cs: Sealed class and fixed API. * Pkcs9SigningTime.cs: Sealed class and fixed API. * PublicKeyInfo.cs: Sealed class. * RecipientInfo.cs: Removed protected constructor. * RecipientInfoCollection.cs: Sealed class. * RecipientInfoEnumerator.cs: Sealed class. * SignedCms.cs: New. Replace SignedPkcs7 (from 1.2). * SignerInfo.cs: Sealed class and fixed API. * SignerInfoCollection.cs: Sealed class and fixed CopyTo. * SignerInfoEnumerator.cs: Sealed class. * SubjectIdentifier.cs: Sealed class. * SubjectIdentifierOrKey.cs: Sealed class. * SubjectIdentifierType.cs: Fixed enum and added [Serializable]. svn path=/trunk/mcs/; revision=30907
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs')
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs
index 7e56687e875..bf64f1742a1 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/RecipientInfoCollection.cs
@@ -2,11 +2,10 @@
// RecipientInfoCollection.cs - System.Security.Cryptography.Pkcs.RecipientInfoCollection
//
// Author:
-// Sebastien Pouliot (spouliot@motus.com)
+// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
+// Copyright (C) 2004 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
@@ -35,7 +34,7 @@ using System.Collections;
namespace System.Security.Cryptography.Pkcs {
- public class RecipientInfoCollection : ICollection {
+ public sealed class RecipientInfoCollection : ICollection {
private ArrayList _list;
@@ -92,4 +91,4 @@ namespace System.Security.Cryptography.Pkcs {
}
}
-#endif \ No newline at end of file
+#endif