1、1.57版本与1.61版本最大的不同为构建椭圆函数的不同。其次通过参数获取的ECPoint对象在取X、Y坐标时使用的api不同，1.57版本ECPoint.getX()，而1.60版本以后的获取则变成ECPoint.normalize().getXCoord()。
主要点在
com.security.gm.old157.util.SM2.sm2GetZ方法的StringUtil.byteConvert32Bytes(userKey.normalize().getXCoord().toBigInteger());
com.security.gm.old157.util.SM2.sm2GetZ方法的StringUtil.byteConvert32Bytes(userKey.normalize().getYCoord().toBigInteger());
com.security.gm.old157.util.SM2.sm2Verify方法的e.add(x1y1.normalize().getXCoord().toBigInteger()).mod(ecc_n);
com.security.gm.sm2.cipher.Reset方法的StringUtil.byteConvert32Bytes(p2.normalize().getXCoord().toBigInteger());

