ICE建立自己的CA中心

参考文档
http://www.zeroc.com/doc/Ice-3.3.0-IceTouch/manual/IceSSL.43.7.html
http://manpages.ubuntu.com/manpages/jaunty/man1/iceca.1.html

ice源码下面有个 iceca
要先安装 Python 才能运行,一定要 2.6 的版本, 如果是 3.0 就有运行出错

初始化一个CA
iceca init --no-password --overwrite

生成一个证书请求
iceca request --overwrite --no-password c:\b.pem abc

对证书请求进行签名
iceca sign --in c:\a.pem_req.pem --out c:\b.pem

生成之后就可以在ICE里使用了

你可能感兴趣的:(ICE建立自己的CA中心)