Granados.PKI.RSAPublicKey.RSAPublicKey C# (CSharp) Method

RSAPublicKey() public method

public RSAPublicKey ( BigInteger exp, BigInteger mod ) : System
exp Granados.Mono.Math.BigInteger
mod Granados.Mono.Math.BigInteger
return System
        public RSAPublicKey(BigInteger exp, BigInteger mod)
        {
            _e = exp;
            _n = mod;
        }