A small library that encrypts and decrypts string values with key.
npm install @okandavutcom/hencrypt
const { encrypt } = require('@okandavutcom/hencrypt');
var result = encrypt("the secret string","mySecretSalt");
// Output should be `098f6bcd4621d373cade4e832627b4f6`
const { decrypt } = require('@okandavutcom/hencrypt');
var result = decrypt('7c606d287b6d6b7a6d7c287b7c7a61666f','mySecretSalt')
// Output should be `the secret string`
npm test
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
- JavaScript
- Mocha for testing
- Istanbul for coverage of tests.
- Travis for continuous integration
- Coveralls for check coverage after every build