欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

The security strength of SHA-1 digest algorithm is not sufficient for this key size

程序员文章站 2022-05-13 17:04:47
...
# 情境
今天在通过license生成证书,过程中出现了如下报错

# 报错信息
keytool error: java.security.InvalidKeyException: The security strength of SHA-1 digest algorithm is not sufficient for this key size

# 问题原因
KeyTool工具来生成私匙库,使用默认的keysize=2048 (太大了)
需要在创建的时候,指定一下大小keysize=1024

# 使用keytool创建标准格式
注意:主要是指定-keysize 1024

keytool -genkey -alias privatekey -keystore privateKeys.store -keysize 1024 -validity 2920 -storepass "password521" -keypass "password521" -dname "CN=BigData, OU=HongYi, O=Space, L=BJ, ST=BJ, C=CN"

 

相关标签: Error实例