예제 #1
0
        public Reissue(string csr, DCVType dcvType)
        {
            CSR = csr;

            _dcvType = dcvType;

            _subjectAlternativeNames = new List <string>();
        }
예제 #2
0
        public Renew(int product, int years, string csr, DCVType dcvType)
        {
            Product = product;
            Years   = years;
            CSR     = csr;

            _dcvType = dcvType;

            _subjectAlternativeNames = new List <string>();
        }
예제 #3
0
 public DCV(string domain, DCVType dcvType, string email)
 {
     Domain  = domain;
     DCVType = dcvType;
     Email   = email;
 }