diff options
Diffstat (limited to 'crypto/rsa.c')
| -rw-r--r-- | crypto/rsa.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/crypto/rsa.c b/crypto/rsa.c index 4cdbec95d077..39e04176b04b 100644 --- a/crypto/rsa.c +++ b/crypto/rsa.c @@ -5,6 +5,7 @@   * Authors: Tadeusz Struk <[email protected]>   */ +#include <linux/fips.h>  #include <linux/module.h>  #include <linux/mpi.h>  #include <crypto/internal/rsa.h> @@ -144,6 +145,9 @@ static int rsa_check_key_length(unsigned int len)  	case 512:  	case 1024:  	case 1536: +		if (fips_enabled) +			return -EINVAL; +		fallthrough;  	case 2048:  	case 3072:  	case 4096: |