openpgpjs/test/fuzz/createMessageBinary.js
2023-12-18 09:16:43 +01:00

10 lines
182 B
JavaScript

import { createMessage } from 'openpgp';
/**
* @param { Buffer } inputData
*/
export function fuzz (inputData) {
return createMessage({ binary: new Uint8Array(inputData) });
}