TLSharp.Core.MTProto.Crypto.RSAServerKey.RSAServerKey C# (CSharp) Method

RSAServerKey() public method

public RSAServerKey ( string fingerprint, TLSharp.Core.MTProto.Crypto.BigInteger m, TLSharp.Core.MTProto.Crypto.BigInteger e ) : System
fingerprint string
m TLSharp.Core.MTProto.Crypto.BigInteger
e TLSharp.Core.MTProto.Crypto.BigInteger
return System
        public RSAServerKey(string fingerprint, BigInteger m, BigInteger e)
        {
            this.fingerprint = fingerprint;
            this.m = m;
            this.e = e;
        }