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;
            }