生成证书,Python应用程序,OPC-UA服务器<> OPC-UA客户端

时间:2017-08-31 09:39:32

标签: python certificate plc opc-ua

我用Python编写了一个小型OPC-UA-Client,它作为PLC的数据记录器,带有集成的OPC-UA服务器。

没有安全性的连接工作正常但我想用证书保护它。

我可以将可信证书导入服务器并导出服务器证书但是如何生成自己的证书?

由于

1 个答案:

答案 0 :(得分:0)

您可以使用openssl生成自己的自签名证书。 https://www.openssl.org/source/

请谨慎使用扩展名,有时有时它们需要.der .cer或.pem,您可能会得到一个比.crt大的版本。

如何创建它们:

https://www.ibm.com/support/knowledgecenter/en/SS8JFY_9.2.0/com.ibm.lmt.doc/Inventory/security/t_ssl_creating_certs.html

https://dzone.com/articles/secure-communication-with-tls-and-the-mosquitto-broker

加密类型:

https://blog.storagecraft.com/5-common-encryption-algorithms/

如果您显示程序,也许我可以帮助您。