Skip to content

Releases: MattSurabian/aes-gcm-stream

v2.1.0

05 Jun 03:28

Choose a tag to compare

Release Notes:

  • Keys can now be passed into the encrypt and decrypt constructors as strings, provided the string's encoding matches what the module is configured for. The module's encoding can be changed using the setKeyEncoding method and discovered with the getKeyEncoding method. The easiest and most secure way to create an encoded key string is with the createEncodedKey method.
  • Benchmark tests are run for informational purposes and to ensure key generation remains incredibly slow.

v2.0.0

20 Apr 19:33
2.0.0

Choose a tag to compare

Release Notes:

  • The MAC is now transmitted at the end of the encrypt stream instead of at the beginning
  • The decrypt stream stores cipher text in memory instead of the encrypt stream doing this.
  • There are tests
  • npm test runs linting and style checks in addition to tests