Example #1
0
 public void AddSubjectKeyId(string subjectKeyId)
 {
     if (_subjectKeyIds == null)
     {
         _subjectKeyIds = new ArrayList();
     }
     _subjectKeyIds.Add(Utils.DecodeHexString(subjectKeyId));
 }
Example #2
0
 public void AddSubjectKeyId(string subjectKeyId)
 {
     _subjectKeyIds ??= new ArrayList();
     _subjectKeyIds.Add(Utils.DecodeHexString(subjectKeyId));
 }