Pkcs9DocumentDescription.cs 532 B

12345678910111213141516171819202122232425
  1. //
  2. // Pkcs9DocumentDescription.cs - System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription
  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 Pkcs9DocumentDescription : Pkcs9Attribute {
  13. private const string oid = "1.3.6.1.4.1.311.88.2.2";
  14. public Pkcs9DocumentDescription (string documentDescription)
  15. : base (new Oid (oid), documentDescription) {}
  16. }
  17. }
  18. #endif