BraintreeEncryption.Library.BouncyCastle.Asn1.X509.RsaPublicKeyStructure.ToAsn1Object C# (CSharp) Method

ToAsn1Object() public method

public ToAsn1Object ( ) : Asn1Object
return Asn1Object
        public override Asn1Object ToAsn1Object()
        {
            return new DerSequence(
                new DerInteger(Modulus),
                new DerInteger(PublicExponent));
        }