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.
14 lines
478 B
14 lines
478 B
import fs from 'fs-extra';
|
|
import path from 'path';
|
|
import isUndefined from 'lodash/isUndefined.js';
|
|
import type { SSL, SSLBuffer } from '../shared/interfaces';
|
|
|
|
export async function loadSSL(ssl?: SSL): Promise<SSLBuffer> {
|
|
if (isUndefined(ssl) || isUndefined(ssl.key) || isUndefined(ssl.cert))
|
|
return {};
|
|
const [key, cert]: Buffer[] = await Promise.all([
|
|
fs.readFile(path.resolve(ssl.key)),
|
|
fs.readFile(path.resolve(ssl.cert)),
|
|
]);
|
|
return { key, cert };
|
|
}
|
|
|