We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I do this?
const decryptChunk = (chunk, blowFishKey) => { let cipher = crypto.createDecipheriv('bf-cbc', blowFishKey, Buffer.from([0, 1, 2, 3, 4, 5, 6, 7])); cipher.setAutoPadding(false); return cipher.update(chunk, 'binary', 'binary') + cipher.final(); }
The text was updated successfully, but these errors were encountered:
This could be added onto via the use of a JS Blowfish module and a PR. I'll see if there's any that might do the job here.
Sorry, something went wrong.
Seeing how the repo is implemented, though, it'd require a polyfill for your usage case
No branches or pull requests
How do I do this?
The text was updated successfully, but these errors were encountered: