cryptr
cryptr copied to clipboard
Very basic encrypt and decrypt node module
The default settings are too slow for my use case. Reducing pbkdf2 iterations from 100k to 10k yields a 10x speed improvement.
run with: ``` $ npx jest --detectOpenHandles PASS __tests__/test.js ✓ works... (121 ms) Test Suites: 1 passed, 1 total Tests: 1 passed, 1 total Snapshots: 0 total Time: 0.345 s,...
What are your thoughts on moving the variable defined [here](https://github.com/MauriceButler/cryptr/blob/master/index.js#L5) to an optional paramter in the `Crypter` constructor? If we define the default to be the same as it currently...
Hi, I am building a small script which will take a secret from the user, and validate that it was correct before attempting to decrypt the main data. To do...