ACMESharp.PKI.RSA.RsaPrivateKey.RsaPrivateKey C# (CSharp) Method

RsaPrivateKey() public method

public RsaPrivateKey ( int bits, string e, string pem ) : System
bits int
e string
pem string
return System
        public RsaPrivateKey(int bits, string e, string pem)
        {
            Bits = bits;
            E = e;
            Pem = pem;
        }
RsaPrivateKey