- using Org.BouncyCastle.Asn1;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CAUtilLib
- {
- public class AddExtensionData
- {
- public string OID { get; set; }
- public bool Critical { get; set; }
- public Asn1Encodable ExtensionValue { get; set; }
- }
- }
|