Pkcs9DocumentName.cs 491 B

12345678910111213141516171819202122232425
  1. //
  2. // Pkcs9DocumentName.cs - System.Security.Cryptography.Pkcs.Pkcs9DocumentName
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. #if NET_1_2
  10. using System;
  11. namespace System.Security.Cryptography.Pkcs {
  12. public class Pkcs9DocumentName : Pkcs9Attribute {
  13. private const string oid = "1.3.6.1.4.1.311.88.2.1";
  14. public Pkcs9DocumentName (string documentName)
  15. : base (new Oid (oid), documentName) {}
  16. }
  17. }
  18. #endif