Skip to content

Releases: sayomaki/reallydangerous

reallydangerous v2.1.1

02 Oct 10:16
117b62a
Compare
Choose a tag to compare
  • Updated README documentation
  • Move index.js from root directory to src/
  • Remove unneeded epoch parameter to the get_epoch() function in TimestampSigner

reallydangerous v2.1.0

10 Jan 09:11
acb8a6d
Compare
Choose a tag to compare
  • Allow almost any hashing/digest method supported by nodeJS crypto module
  • Update and improve test modules
  • Default to default secret if secret parameter is not provided
  • Add web-safe Base64 encoder/decoder
  • Some general fixes for syntax and usage

reallydangerous v2.0.0

05 Aug 07:36
07b394b
Compare
Choose a tag to compare
  • Rewrote entire library to have similar structure to the python itsdangerous module
  • Signature output is now similar to the python itsdangerous module (you are able to check with the same key and payload)
  • Added epoch support to further reduce the size of the signature

reallydangerous v1.1.0

27 Jul 12:44
e82c30d
Compare
Choose a tag to compare
  • Entire source in single file
  • Supports only NodeJS due to usage of Buffers
  • Timestamp signer
  • Uses number instead of string for timestamp to reduce length
  • Strips trailing "=" automatically
  • Web-safe format (convert "+" to "-" and "/" to "_")