2004-04-22 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / Pkcs9DocumentName.cs
1 //
2 // Pkcs9DocumentName.cs - System.Security.Cryptography.Pkcs.Pkcs9DocumentName
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 #if NET_2_0
11
12 using System;
13
14 namespace System.Security.Cryptography.Pkcs {
15
16         public class Pkcs9DocumentName : Pkcs9Attribute {
17
18                 private const string oid = "1.3.6.1.4.1.311.88.2.1";
19
20                 public Pkcs9DocumentName (string documentName) 
21                         : base (new Oid (oid), documentName) {}
22         }
23 }
24
25 #endif