System.Security.Cryptography.RSAImplementation.RSAOpenSsl.ForceSetKeySize C# (CSharp) Метод

ForceSetKeySize() приватный Метод

private ForceSetKeySize ( int newKeySize ) : void
newKeySize int
Результат void
        private void ForceSetKeySize(int newKeySize)
        {
            // In the event that a key was loaded via ImportParameters or an IntPtr/SafeHandle
            // it could be outside of the bounds that we currently represent as "legal key sizes".
            // Since that is our view into the underlying component it can be detached from the
            // component's understanding.  If it said it has opened a key, and this is the size, trust it.
            KeySizeValue = newKeySize;
        }