You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating RSA keys |p - q| must not be small. The Digital Signature Standard (DSS) specifies in B 3.2.2 that it should be smaller than 2^(bits(n)/2-100) meaning that the first 100 bits of p and q should differ. jsrsasign does not check this, when generating RSA keys. This makes it hard to prove compliance.
The text was updated successfully, but these errors were encountered:
Thank you for your report. The |p - q| check have been added in the 10.5.13 release today. Theoretically, a weak RSA key has only a 1 in 2^100 chance of being generated before the fix.
When generating RSA keys
|p - q|
must not be small. The Digital Signature Standard (DSS) specifies in B 3.2.2 that it should be smaller than2^(bits(n)/2-100)
meaning that the first 100 bits ofp
andq
should differ. jsrsasign does not check this, when generating RSA keys. This makes it hard to prove compliance.The text was updated successfully, but these errors were encountered: