browserify / browserify/crypto-browserify
Blowfish support
Open
- Dominant language
- JavaScript
- Stars
- 681
- Forks
- 209
- PR merge metrics
- No merged PRs in 30d
Description
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();
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.