Node.js 上的 starttls > 0.4.0
我遇到了这个线程 Node.js HTTPS Secure Error 其中提到 tls 模块是现在在节点上执行 TLS 的方法。看来 setSecure() 已被删除。我正在尝试为 XMPP 执行 STARTTLS。这意味着socket会中途升级。我该如何在 node.js 上执行此操作 > 0.4.0?
I came across this thread Node.js HTTPS Secure Error which mentions that the tls module is the way to do TLS on node now. It seems that setSecure() has been dropped. I'm trying to do a STARTTLS for XMPP. This means that the socket will be upgraded midway. How do I go about doing this on node.js > 0.4.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:https://gist.github.com/848444
Try this: https://gist.github.com/848444
仔细查看 Node Github 存储库中的 lib/tls.js 文件。
https://github.com/joyent/node/blob /master/lib/tls.js#L949-992
您可能真正喜欢的另一个资源在这里:
https://github.com/andris9/rai/blob/master/lib/starttls.js
Take a close look at the lib/tls.js file in the Node Github repo.
https://github.com/joyent/node/blob/master/lib/tls.js#L949-992
Another resource that you really might like is here:
https://github.com/andris9/rai/blob/master/lib/starttls.js