我正在尝试在 NodeJs 中创建一个客户端,该客户端将验证它连接到的服务器证书。我还没有找到有关该主题的示例/文档,并且 https://github.com/vanjakom/JavaScriptPlayground/blob/master/client_server_ssl_nodejs/client.js的示例 不会使服务器失败,尽管服务器证书没有' t 遵守客户使用的 ca.crt。
任何人都可以建议一种方法来验证客户端的服务器证书吗?
来自站点来源的稍微修改的代码:
var https = require('https');
var fs = require("fs");
var options = {
host: 'localhost',
port: 8000,
path: '/test',
method: 'GET',
//key: fs.readFileSync("keys/userB.key"),
//cert: fs.readFileSync("certs/userB.crt"),
ca: fs.readFileSync("ca.crt")
,rejectUnauthorized:true,
requestCert:true,
agent:false
};
var req = https.request(options, function(res) {
console.log("statusCode: ", res.statusCode);
console.log("headers: ", res.headers);
res.on('data', function(d) {
console.log(""+d);
});
});
req.end();
req.on('error', function(e) {
console.error(e);
});