如何在浏览器中通过 websocket 使用证书和私钥?

发布于 2025-01-10 05:40:01 字数 685 浏览 0 评论 0原文

如何在浏览器中使用 websocket 的证书身份验证。

我用python做到了,我也发现了很多用nodejs做到这一点的教程,但是在浏览器中也可以用javascript实现吗?我没有找到任何相关内容。

这是我的工作 python 代码(其中一部分显示了我的意思)

import json
import websocket
import ssl

print("Start Websocket")
wsapp = websocket.WebSocketApp("wss://localhost:8080",
                               on_open=on_open,
                               on_message=on_message,
                               on_error=on_error,
                               on_ping=on_ping)

wsapp.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE, "certfile": "private.crt",
                          "keyfile": "private.key", "ssl_context.check_hostname": False})
wsapp.close()

How to use certificate authentification for a websocket in the browser.

I did it with python, also i found many tutorials in doing it with nodejs, but is it possible in the browser with javascript too? I didn't find anything about that.

Here's my working python code(part of it to show what i mean)

import json
import websocket
import ssl

print("Start Websocket")
wsapp = websocket.WebSocketApp("wss://localhost:8080",
                               on_open=on_open,
                               on_message=on_message,
                               on_error=on_error,
                               on_ping=on_ping)

wsapp.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE, "certfile": "private.crt",
                          "keyfile": "private.key", "ssl_context.check_hostname": False})
wsapp.close()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文