ToAsn1Object() public méthode

public ToAsn1Object ( ) : Asn1Object
Résultat Asn1Object
		private void checkConstruction(
			OtherSigningCertificate	otherCert,
			OtherCertID				otherCertID)
		{
			checkValues(otherCert, otherCertID);

			otherCert = OtherSigningCertificate.GetInstance(otherCert);

			checkValues(otherCert, otherCertID);

			Asn1InputStream aIn = new Asn1InputStream(otherCert.ToAsn1Object().GetEncoded());

			Asn1Sequence seq = (Asn1Sequence) aIn.ReadObject();

			otherCert = OtherSigningCertificate.GetInstance(seq);

			checkValues(otherCert, otherCertID);
		}