Pkcs9Attribute.cs 585 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Pkcs9Attribute.cs - System.Security.Cryptography.Pkcs.Pkcs9Attribute
  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. using System.Collections;
  12. namespace System.Security.Cryptography.Pkcs {
  13. public class Pkcs9Attribute : CryptographicAttribute {
  14. // constructors
  15. public Pkcs9Attribute (Oid oid) : base (oid) {}
  16. public Pkcs9Attribute (Oid oid, ArrayList values) : base (oid, values) {}
  17. public Pkcs9Attribute (Oid oid, object value) : base (oid, value) {}
  18. }
  19. }
  20. #endif