AddExtensionData.cs 376 B

12345678910111213141516
  1. using Org.BouncyCastle.Asn1;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CAUtilLib
  8. {
  9. public class AddExtensionData
  10. {
  11. public string OID { get; set; }
  12. public bool Critical { get; set; }
  13. public Asn1Encodable ExtensionValue { get; set; }
  14. }
  15. }