Goedel.Cryptography.Jose.PublicKeyRSA.RSAParameters C# (CSharp) Method

RSAParameters() public method

Return the RSAParameters object.
public RSAParameters ( ) : RSAParameters
return RSAParameters
        public virtual RSAParameters RSAParameters() {
            var RSAParameters = new RSAParameters();
            RSAParameters.Modulus = n;
            RSAParameters.Exponent = e;

            return RSAParameters;
            }