openpgpjs/test/fuzz/readKeyBinary.js

23 lines
599 B
JavaScript

import { readKey } from 'openpgp';
const expected = ['This message / key probably does not conform to a valid OpenPGP format'];
function ignoredError(error) {
return expected.some(message => error.message.includes(message));
}
/**
* @param { Buffer } inputData
*/
export function fuzz (inputData) {
const binaryKey = new Uint8Array(`-----BEGIN PGP PRIVATE KEY BLOCK-----\n ${inputData.toString('base64')} -----END PGP PRIVATE KEY BLOCK-----`);
return readKey({ binaryKey })
.catch(error => {
if (error.message && !ignoredError(error)) {
throw error;
}
});
}