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