gpt4 book ai didi

python - 是否可以使用 pyOpenSSL 设置 subjectAltName?

转载 作者:太空宇宙 更新时间:2023-11-03 12:50:18 25 4
gpt4 key购买 nike

我需要使用 pyOpenSSL 从 Python 生成 SSL 证书。有谁知道是否可以设置 subjectAltName?从文档(https://pythonhosted.org/pyOpenSSL/api/crypto.html#x509-objects)看来并非如此。实际上只提供了一个set_subject方法。有什么办法可以将其添加到证书中吗?

最佳答案

san_list = ["DNS:*.google.com", "DNS:google.ym"]
cert.add_extensions([
OpenSSL.crypto.X509Extension(
"subjectAltName", False, ", ".join(san_list)
)
])

关于python - 是否可以使用 pyOpenSSL 设置 subjectAltName?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24475768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com