public CrlValidatedID( OtherHash crlHash, CrlIdentifier crlIdentifier) { if (crlHash == null) throw new ArgumentNullException("crlHash"); this.crlHash = crlHash; this.crlIdentifier = crlIdentifier; }
public OcspResponsesID( OcspIdentifier ocspIdentifier, OtherHash ocspRepHash) { if (ocspIdentifier == null) throw new ArgumentNullException("ocspIdentifier"); this.ocspIdentifier = ocspIdentifier; this.ocspRepHash = ocspRepHash; }
public CrlValidatedID( OtherHash crlHash, CrlIdentifier crlIdentifier) { if (crlHash == null) { throw new ArgumentNullException("crlHash"); } this.crlHash = crlHash; this.crlIdentifier = crlIdentifier; }
public OcspResponsesID( OcspIdentifier ocspIdentifier, OtherHash ocspRepHash) { if (ocspIdentifier == null) { throw new ArgumentNullException("ocspIdentifier"); } this.ocspIdentifier = ocspIdentifier; this.ocspRepHash = ocspRepHash; }
private CrlValidatedID( Asn1Sequence seq) { if (seq == null) throw new ArgumentNullException("seq"); if (seq.Count < 1 || seq.Count > 2) throw new ArgumentException("Bad sequence size: " + seq.Count, "seq"); this.crlHash = OtherHash.GetInstance(seq[0].ToAsn1Object()); if (seq.Count > 1) { this.crlIdentifier = CrlIdentifier.GetInstance(seq[1].ToAsn1Object()); } }
private OcspResponsesID( Asn1Sequence seq) { if (seq == null) throw new ArgumentNullException("seq"); if (seq.Count < 1 || seq.Count > 2) throw new ArgumentException("Bad sequence size: " + seq.Count, "seq"); this.ocspIdentifier = OcspIdentifier.GetInstance(seq[0].ToAsn1Object()); if (seq.Count > 1) { this.ocspRepHash = OtherHash.GetInstance(seq[1].ToAsn1Object()); } }
private CrlValidatedID( Asn1Sequence seq) { if (seq == null) { throw new ArgumentNullException("seq"); } if (seq.Count < 1 || seq.Count > 2) { throw new ArgumentException("Bad sequence size: " + seq.Count, "seq"); } this.crlHash = OtherHash.GetInstance(seq[0].ToAsn1Object()); if (seq.Count > 1) { this.crlIdentifier = CrlIdentifier.GetInstance(seq[1].ToAsn1Object()); } }
private OcspResponsesID( Asn1Sequence seq) { if (seq == null) { throw new ArgumentNullException("seq"); } if (seq.Count < 1 || seq.Count > 2) { throw new ArgumentException("Bad sequence size: " + seq.Count, "seq"); } this.ocspIdentifier = OcspIdentifier.GetInstance(seq[0].ToAsn1Object()); if (seq.Count > 1) { this.ocspRepHash = OtherHash.GetInstance(seq[1].ToAsn1Object()); } }
public CrlValidatedID( OtherHash crlHash) : this(crlHash, null) { }