我很抱歉我的语言,但我不会说英语。
我正在尝试在我的应用SSL中实现,但我只有由csr文件创建的valud p7b。我在linux服务器上使用expressjs和node js。我知道如何实施PEM证书
var options = {
key: fs.readFileSync('./private.pem'),
cert: fs.readFileSync('./' + config.ssl[config.mode].cert)
};
server = https.createServer(options, app).listen(3000);
但我不知道如何实施p7b证书,请帮助我
答案 0 :(得分:0)
首先,您必须将p7b转换为pem格式:
openssl pkcs7 -in public.p7b -inform DER -out public.pem -print_certs
创建包含私钥和公共证书的pkcs12文件:
openssl pkcs12 -export -inkey private.key -in public.pem -name my_name -out result.pfx
要在节点js中使用pfx文件,请使用
const cert = fs.readFileSync("result.pfx");
const request = require('request').defaults({
agentOptions: {
pfx: cert,
passphrase: password
}
});