使用 python 创建 openVPN 证书
你们知道一个可以生成 openVPN 证书的 python “脚本”吗? 我需要这个来将它与我的 django 项目集成......
谢谢。
Do you guys know a python "script" that can generate openVPN certificates ?
I need this to integrate it with my django project ...
Thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否已设置所需的 PKI ,即,您有自己的证书颁发机构吗?如果是这样,则将目录更改为
easy-rsa
(请参阅我刚刚指出的文档,了解如何在各种平台中找到该目录)并使用 Python 的subprocess
运行build-key 可能是最简单的。
Do you have the needed PKI set up, i.e., have you made your own certificate authority? If so, then changing directory to
easy-rsa
(see the docs I just pointed to for how to find that directory in various platforms) and using Python'ssubprocess
to runbuild-key
for the client of interest might be simplest.查看 django-x509 的源代码。
具体来说是 基础 x509 型号。
Checkout the source code of django-x509.
Specifically the
_generate
method of the base x509 model.