System.Security.Cryptography.DSAImplementation.DSACng.ForceSetKeySize C# (CSharp) Method

ForceSetKeySize() private method

private ForceSetKeySize ( int newKeySize ) : void
newKeySize int
return void
            private void ForceSetKeySize(int newKeySize)
            {
                // Our LegalKeySizes value stores the values that we encoded as being the correct
                // legal key size limitations for this algorithm, as documented on MSDN.
                //
                // But on a new OS version we might not question if our limit is accurate, or MSDN
                // could have been inaccurate to start with.
                //
                // Since the key is already loaded, we know that Windows thought it to be valid;
                // therefore we should set KeySizeValue directly to bypass the LegalKeySizes conformance
                // check.
                //
                KeySizeValue = newKeySize;
            }