ACMESharp.PKI.RSA.RsaPrivateKey.RsaPrivateKey C# (CSharp) 메소드

RsaPrivateKey() 공개 메소드

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