4 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);