代码
首先说结论,hutool 的SM2对象的公钥私钥是不关联的,你可以存自己的私钥和别人的公钥,这样解密的时候只要协商好就能用了,以下是调换公钥私钥的加解密案例
公钥格式
04+公钥x+公钥y
//使用自定义的公钥私钥生成sm2
@Test
public void system56() throws Exception {
//互相使用对方的公钥生成对象,结果没问题
//privateKey
String privateKeyHex = "私钥1";
//publicKey x
String x="公钥1x";
//publicKey y
String y="公钥1y";
String privKey="私钥2";
String pubKey="公钥2";
SM2 sm2 = new SM2(privateKeyHex, pubKey);
SM2 sm21= new SM2(privKey, "04"+x+y);
// 原始字符串s变换为baty(直接getbyte也行,主要是防止编码错误),加密,转换为16进制字符串
String hexString = Hex.toHexString(sm2.encrypt("123".getBytes("UTF-8"), KeyType.PublicKey));
System.out.println("密文"+hexString);
//密文是16进制字符串,直接解密或者获取字节数组,在解密,
String s =new String(sm21.decrypt(hexString, KeyType.PrivateKey),"UTF-8");
//
System.out.println("明文"+s);
}
sm2密钥生成网站
SM2加解密 (goto327.top)