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
456 B
14 lines
456 B
import { readFile } from 'fs-extra';
|
|
import { resolve } from 'path';
|
|
import { isUndefined } from 'lodash';
|
|
import { SSL, SSLBuffer } from '../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([
|
|
readFile(resolve(ssl.key)),
|
|
readFile(resolve(ssl.cert)),
|
|
]);
|
|
return { key, cert };
|
|
}
|
|
|