Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure.ToAsn1Object C# (CSharp) Méthode

ToAsn1Object() public méthode

public ToAsn1Object ( ) : Asn1Object
Résultat Org.BouncyCastle.Asn1.Asn1Object
        public override Asn1Object ToAsn1Object()
        {
			return new DerSequence(
				new DerInteger(0), // version
				new DerInteger(Modulus),
				new DerInteger(PublicExponent),
				new DerInteger(PrivateExponent),
				new DerInteger(Prime1),
				new DerInteger(Prime2),
				new DerInteger(Exponent1),
				new DerInteger(Exponent2),
				new DerInteger(Coefficient));
        }
    }