Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGES.md 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # node-http-signature changelog
  2. ## 1.1.1
  3. - Version of dependency `assert-plus` updated: old version was missing
  4. some license information
  5. - Corrected examples in `http_signing.md`, added auto-tests to
  6. automatically validate these examples
  7. ## 1.1.0
  8. - Bump version of `sshpk` dependency, remove peerDependency on it since
  9. it now supports exchanging objects between multiple versions of itself
  10. where possible
  11. ## 1.0.2
  12. - Bump min version of `jsprim` dependency, to include fixes for using
  13. http-signature with `browserify`
  14. ## 1.0.1
  15. - Bump minimum version of `sshpk` dependency, to include fixes for
  16. whitespace tolerance in key parsing.
  17. ## 1.0.0
  18. - First semver release.
  19. - #36: Ensure verifySignature does not leak useful timing information
  20. - #42: Bring the library up to the latest version of the spec (including the
  21. request-target changes)
  22. - Support for ECDSA keys and signatures.
  23. - Now uses `sshpk` for key parsing, validation and conversion.
  24. - Fixes for #21, #47, #39 and compatibility with node 0.8
  25. ## 0.11.0
  26. - Split up HMAC and Signature verification to avoid vulnerabilities where a
  27. key intended for use with one can be validated against the other method
  28. instead.
  29. ## 0.10.2
  30. - Updated versions of most dependencies.
  31. - Utility functions exported for PEM => SSH-RSA conversion.
  32. - Improvements to tests and examples.