Renci.SshNet.Security.Cryptography.Ciphers.RsaCipher.RsaCipher C# (CSharp) 메소드

RsaCipher() 공개 메소드

Initializes a new instance of the RsaCipher class.
public RsaCipher ( RsaKey key ) : System
key RsaKey The RSA key.
리턴 System
        public RsaCipher(RsaKey key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            _key = key;
            _isPrivate = !_key.D.IsZero;
        }