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>2003-11-07 15:49:29 +0300
committerSebastien Pouliot <sebastien@ximian.com>2003-11-07 15:49:29 +0300
commit3e442ce6ff7494c619a9e8017189bc9f5262eed0 (patch)
treeb619c417d3cc31fd10e30e15d11dd44795392fa5 /mcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs
parentd5e5d2828e5e5a305c24aa00c2dad914e0761b57 (diff)
2003-11-07 Sebastien Pouliot <spouliot@videotron.ca>
* AlgorithmIdentifier.cs: New. Class to encapsulate PKCS7 AlgorithmIdentifier. * CryptographicAttribute.cs: Basic class for attributes. * KeyAgreeKeyChoice.cs: New. Enumeration for key agreement. * Pkcs9Attribute.cs: New. Base class for Pkcs#9 attributes. * Pkcs9DocumentDescription.cs: New. Pkcs#9 DocumentDescription attribute. * Pkcs9DocumentName.cs: New. Pkcs#9 DocumentName attribute. * Pkcs9SigningTime.cs: New. Pkcs#9 SigningTime attribute. * RecipientInfoType.cs: New. Enumeration for RecipientInfo. * RecipientSubType.cs: New. Enumeration for RecipientInfo. * SubjectIdentifierOrKeyType.cs: New. Enumeration for SubjectIdentifier. * SubjectIdentifierType.cs: New. Enumeration for SubjectIdentifier. svn path=/trunk/mcs/; revision=19709
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs')
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs
new file mode 100755
index 00000000000..e419fd68cef
--- /dev/null
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/Pkcs9Attribute.cs
@@ -0,0 +1,29 @@
+//
+// Pkcs9Attribute.cs - System.Security.Cryptography.Pkcs.Pkcs9Attribute
+//
+// Author:
+// Sebastien Pouliot (spouliot@motus.com)
+//
+// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
+//
+
+#if NET_1_2
+
+using System;
+using System.Collections;
+
+namespace System.Security.Cryptography.Pkcs {
+
+ public class Pkcs9Attribute : CryptographicAttribute {
+
+ // constructors
+
+ public Pkcs9Attribute (Oid oid) : base (oid) {}
+
+ public Pkcs9Attribute (Oid oid, ArrayList values) : base (oid, values) {}
+
+ public Pkcs9Attribute (Oid oid, object value) : base (oid, value) {}
+ }
+}
+
+#endif \ No newline at end of file