mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
664 B
29 lines
664 B
7 years ago
|
'use strict';
|
||
|
|
||
|
// Example:
|
||
|
// C=US\nST=CA\nL=SF\nO=Joyent\nOU=Node.js\nCN=ca1\nemailAddress=ry@clouds.org
|
||
|
function parseCertString(s) {
|
||
|
var out = Object.create(null);
|
||
|
var parts = s.split('\n');
|
||
|
for (var i = 0, len = parts.length; i < len; i++) {
|
||
|
var sepIndex = parts[i].indexOf('=');
|
||
|
if (sepIndex > 0) {
|
||
|
var key = parts[i].slice(0, sepIndex);
|
||
|
var 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
|
||
|
};
|