diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /devtools/shared/security/cert.js | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/shared/security/cert.js')
-rw-r--r-- | devtools/shared/security/cert.js | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/devtools/shared/security/cert.js b/devtools/shared/security/cert.js new file mode 100644 index 0000000000..24e1d1012b --- /dev/null +++ b/devtools/shared/security/cert.js @@ -0,0 +1,62 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict"; + +var { Ci, Cc } = require("chrome"); +var DevToolsUtils = require("devtools/shared/DevToolsUtils"); +DevToolsUtils.defineLazyGetter(this, "localCertService", () => { + // Ensure PSM is initialized to support TLS sockets + Cc["@mozilla.org/psm;1"].getService(Ci.nsISupports); + return Cc["@mozilla.org/security/local-cert-service;1"].getService( + Ci.nsILocalCertService + ); +}); + +const localCertName = "devtools"; + +exports.local = { + /** + * Get or create a new self-signed X.509 cert to represent this device for + * DevTools purposes over a secure transport, like TLS. + * + * The cert is stored permanently in the profile's key store after first use, + * and is valid for 1 year. If an expired or otherwise invalid cert is found, + * it is removed and a new one is made. + * + * @return promise + */ + getOrCreate() { + return new Promise((resolve, reject) => { + localCertService.getOrCreateCert(localCertName, { + handleCert: function(cert, rv) { + if (rv) { + reject(rv); + return; + } + resolve(cert); + }, + }); + }); + }, + + /** + * Remove the DevTools self-signed X.509 cert for this device. + * + * @return promise + */ + remove() { + return new Promise((resolve, reject) => { + localCertService.removeCert(localCertName, { + handleCert: function(rv) { + if (rv) { + reject(rv); + return; + } + resolve(); + }, + }); + }); + }, +}; |