cc3200 serial_wifi 例程问题
大家好.
我在用cc3200模块学习sdk的serial_wifi例程,其中遇到一些问题.
docs的CC32xx Serial Wifi.pdf有以下说明:
Generating certificates using OpenSSL
The following are the steps for generating certificates using OpenSSL tool.
Install OpenSSl and run the following commands:
Generate a CA
1) openssl req -out ca.pem -new -x509
-generates CA file "ca.pem" and CA key "privkey.pem"
Generate server certificate/key pair
2) openssl genrsa -out server.key 1024
3) openssl req -key server.key -new -out server.req
4) openssl x509 -req -in server.req -CA CA.pem -CAkey privkey.pem -CAserial file.srl -out server.pem
-contents of "file.srl" is a two digit number. eg. "00"
5) Convert the certificates and key generated to DER format.
现在的问题是,我的电脑室xp系统,看了很多教程都没有成功配置OpenSSL,不能生成CA等证书,因此这个例程没有测试成功.
我非常迫切把这个例程弄懂,调试成功.
能不能帮我生成这三个文件?
希望热心的朋友能够帮我解决这个问题.
openssl windows安装程序装了就可以用了,你是遇到什么问题了吗?