2 writes to dwMinLength
Microsoft.AspNetCore.Cryptography.Internal.Tests (2)
Cng\BCRYPT_KEY_LENGTHS_STRUCT_Tests.cs (2)
22dwMinLength = (uint)minLength, 45dwMinLength = (uint)minLength,
5 references to dwMinLength
Microsoft.AspNetCore.Cryptography.Internal (4)
Cng\BCRYPT_KEY_LENGTHS_STRUCT.cs (4)
24string message = Resources.FormatBCRYPT_KEY_LENGTHS_STRUCT_InvalidKeyLength(keyLengthInBits, dwMinLength, dwMaxLength, dwIncrement); 36return (keyLengthInBits == dwMinLength || keyLengthInBits == dwMaxLength); 40return (dwMinLength <= keyLengthInBits) 42&& ((keyLengthInBits - dwMinLength) % dwIncrement == 0);
Microsoft.AspNetCore.Cryptography.Internal.Tests (1)
Cng\CachedAlgorithmHandlesTests.cs (1)
119Assert.Equal(128U, supportedKeyLengths.dwMinLength);