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