RFC 3126: 4.2.2 Complete Revocation Refs Attribute Definition CrlIdentifier ::= SEQUENCE { crlissuer Name, crlIssuedTime UTCTime, crlNumber INTEGER OPTIONAL }
상속: Asn1Encodable
예제 #1
0
 public CrlValidatedID(OtherHash crlHash, CrlIdentifier crlIdentifier)
 {
     if (crlHash == null)
     {
         throw new ArgumentNullException("crlHash");
     }
     this.crlHash       = crlHash;
     this.crlIdentifier = crlIdentifier;
 }
예제 #2
0
		public CrlValidatedID(
			OtherHash		crlHash,
			CrlIdentifier	crlIdentifier)
		{
			if (crlHash == null)
				throw new ArgumentNullException("crlHash");

			this.crlHash = crlHash;
			this.crlIdentifier = crlIdentifier;
		}
예제 #3
0
 public CrlValidatedID(OtherHash crlHash, CrlIdentifier crlIdentifier)
 {
     //IL_000e: Unknown result type (might be due to invalid IL or missing references)
     if (crlHash == null)
     {
         throw new ArgumentNullException("crlHash");
     }
     this.crlHash       = crlHash;
     this.crlIdentifier = crlIdentifier;
 }
예제 #4
0
		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());
			}
		}
예제 #5
0
 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());
     }
 }
예제 #6
0
 private CrlValidatedID(Asn1Sequence seq)
 {
     //IL_000e: Unknown result type (might be due to invalid IL or missing references)
     //IL_0040: Unknown result type (might be due to invalid IL or missing references)
     if (seq == null)
     {
         throw new ArgumentNullException("seq");
     }
     if (seq.Count < 1 || seq.Count > 2)
     {
         throw new ArgumentException(string.Concat((object)"Bad sequence size: ", (object)seq.Count), "seq");
     }
     crlHash = OtherHash.GetInstance(seq[0].ToAsn1Object());
     if (seq.Count > 1)
     {
         crlIdentifier = CrlIdentifier.GetInstance(seq[1].ToAsn1Object());
     }
 }