这是代码(Ubuntu上的浏览器Chrome):
RTCPeerConnection.generateCertificate(
{ name: "RSASSA-PKCS1-v1_5",
modulusLength: 2048,
publicExponent: new Uint8Array([1, 0, 1]),
hash: "SHA-256" })
.then
( function(cert) {
console.log("typeof: " + typeof(cert));
console.log("S: " + JSON.stringify(cert));
},
function(err) {
console.log("E: " + err);
}
);
它显示:
typeof: object
S: {}
实际上,这几乎是来自Mozilla 网站的确切代码
此外,符合 WebRTC 规范第 4.9 节