mirror of https://github.com/ghostfolio/ghostfolio
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.
31 lines
986 B
31 lines
986 B
import { isoBase64URL } from './iso/index.js';
|
|
/**
|
|
* Convert buffer to an OpenSSL-compatible PEM text format.
|
|
*/
|
|
export function convertCertBufferToPEM(certBuffer) {
|
|
let b64cert;
|
|
/**
|
|
* Get certBuffer to a base64 representation
|
|
*/
|
|
if (typeof certBuffer === 'string') {
|
|
if (isoBase64URL.isBase64URL(certBuffer)) {
|
|
b64cert = isoBase64URL.toBase64(certBuffer);
|
|
}
|
|
else if (isoBase64URL.isBase64(certBuffer)) {
|
|
b64cert = certBuffer;
|
|
}
|
|
else {
|
|
throw new Error('Certificate is not a valid base64 or base64url string');
|
|
}
|
|
}
|
|
else {
|
|
b64cert = isoBase64URL.fromBuffer(certBuffer, 'base64');
|
|
}
|
|
let PEMKey = '';
|
|
for (let i = 0; i < Math.ceil(b64cert.length / 64); i += 1) {
|
|
const start = 64 * i;
|
|
PEMKey += `${b64cert.substr(start, 64)}\n`;
|
|
}
|
|
PEMKey = `-----BEGIN CERTIFICATE-----\n${PEMKey}-----END CERTIFICATE-----\n`;
|
|
return PEMKey;
|
|
}
|
|
|