Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Releases: nathanbuchar/node-cipher

v6.0.0

20 Jan 06:28

Choose a tag to compare

New in this release

  • Move the command line interface within the core node-cipher package.
  • Split README into two pieces: one for the CLI, and the other for the Node JS API.
  • Change list() to listAlgorithms().
  • add listHashes() public method to list all available HMAC hashes.
  • Update tests to include these new methods.
  • The CLI no longer accepts the input and output as options, but rather as arguments.
  • The --iterations shorthand has been changed to -i
  • Added tests to reflect the recent CLI changes.
  • CLI is now using commander instead of yargs.
  • Rewritten and more robust CLI code.
  • Changed --list option to --algorithms.
  • Added --hashes option.
  • Added enc and dec aliases for encrypt and decrypt respectively.

v5.0.0

16 Jan 07:05

Choose a tag to compare

New in this version

  • Files are now encrypted by using a derived key from the password provided, and not encrypted by just the password alone.
  • Added the ability to specify salt, iterations, keylen, and digest when deriving the encryption key.
  • Added tests to support new options and additional functionality.