-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SM2证书模板中的算法没有初始化为SM2WithSM3,导致cryptogen生成的证书没法用 #5
Comments
遇到一样的问题,下载源码编译后,按照步骤生成证书,运行中发现order容器错误:Invalid DER for channel testchainid, 将具体错误打印出来 是err info: x509:unsupported elliptic curve。 |
不知道我哪里出错了?下载直接编译成功后启动,peer正常,order报错,加上上述的修改后,order错误同样。 |
https://github.com/commis/fabric-sdk-go-gm/issues/1 这个帖子也说 https://github.com/dddengyunjie/fabric 代码编译的镜像默认启动网络不是国密,需要做以下代码的修改才能够支持默认国密。 |
修改后编译,重新生成证书,启动容器,错误依旧...Invalid DER for channel testchainid |
这个错误很普遍,只要用重新生成的程序生成证书创建通道文件后,发现order根本起不来,难道这么多人都没跑过? |
同样遇到orderer的rootcert证书问题,order无法跑通 |
网络上很多代码都是提供思路,没有完善,需要亲自踩坑,哎,,不知道这些人什么想法 |
Invalid DER for channel testchainid,需要修改代码,很多地方没有替换,奇怪的是网上很多人说未加任何修改跑通过。。。。 |
bccsp/gm/certhelper.go这个文件中,函数ParseX509Certificate2Sm2( )在最后return之前需要增加如下代码,因为证书模板中的算法枚举值此时还都是0,没初始化,会导致cryptogen生成的证书的签名不对。
我调试好久才找到这个bug。由于这个bug的存在,repo主人的代码是没法用cryptogen测试的,这个bug是critical的。当然,要是不用cryptogen来生成测试证书,就没事。
The text was updated successfully, but these errors were encountered: