System.Security.Cryptography.DSAImplementation.DSAOpenSsl.GenerateKey C# (CSharp) 메소드

GenerateKey() 개인적인 메소드

private GenerateKey ( ) : Microsoft.Win32.SafeHandles.SafeDsaHandle
리턴 Microsoft.Win32.SafeHandles.SafeDsaHandle
            private SafeDsaHandle GenerateKey()
            {
                SafeDsaHandle key;

                if (!Interop.Crypto.DsaGenerateKey(out key, KeySize))
                {
                    throw Interop.Crypto.CreateOpenSslCryptographicException();
                }

                return key;
            }