mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 07:53:06 +01:00
74d33630ce
PR-URL: https://github.com/nodejs/node/pull/22219 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Jon Moss <me@jonathanmoss.me>
29 lines
674 B
JavaScript
29 lines
674 B
JavaScript
'use strict';
|
|
|
|
// Example:
|
|
// C=US\nST=CA\nL=SF\nO=Joyent\nOU=Node.js\nCN=ca1\nemailAddress=ry@clouds.org
|
|
function parseCertString(s) {
|
|
const out = Object.create(null);
|
|
const parts = s.split('\n');
|
|
for (var i = 0, len = parts.length; i < len; i++) {
|
|
const sepIndex = parts[i].indexOf('=');
|
|
if (sepIndex > 0) {
|
|
const key = parts[i].slice(0, sepIndex);
|
|
const value = parts[i].slice(sepIndex + 1);
|
|
if (key in out) {
|
|
if (!Array.isArray(out[key])) {
|
|
out[key] = [out[key]];
|
|
}
|
|
out[key].push(value);
|
|
} else {
|
|
out[key] = value;
|
|
}
|
|
}
|
|
}
|
|
return out;
|
|
}
|
|
|
|
module.exports = {
|
|
parseCertString
|
|
};
|