CanYouGiveMeAName
CanYouGiveMeAName
代码里面有相关 test 或者example 吗,感谢~
产品文档里面没有关于证书生成相关的介绍,查看启动脚本 `build_chain.sh` ,工具下载相关代码如下: ``` local tassl_package_name="tassl-1.1.1b-${tassl_mid_name}-${tassl_post_fix}" local tassl_tgz_name="${tassl_package_name}.tar.gz" local tassl_link_prefix="${cdn_link_header}/FISCO-BCOS/tools/tassl-1.1.1b/${tassl_tgz_name}" LOG_INFO "Downloading tassl binary from ${tassl_link_prefix}..." wget --no-check-certificate "${tassl_link_prefix}" tar zxvf ${tassl_tgz_name} && rm ${tassl_tgz_name} chmod u+x ${tassl_package_name} mkdir -p...
go 的标准库只传一个秘钥对就行了,我看本工程的注释也是`Certificates contains one or more certificate chains to present`,但是我只放一个就报错说必须要两个以上。我想着跟之前的TLS兼容,尝试两个放一样的,但是报错`tls: no cipher suite supported by both client and server`,这两个秘钥对有什么要求么。没有看到相关的设计文档,所以想咨询一下,谢谢~ 尝试运行测试用例`credentials_test.go`,也失败了,错误如下: ``` handshake error : x509: certificate has expired or is...
没有找到相关 test 或者 example。谢谢~