sha256

Pure Haskell SHA-256, HMAC-SHA256 (docs.ppad.tech/sha256).
git clone git://git.ppad.tech/sha256.git
Log | Files | Refs | README | LICENSE

CHANGELOG (504B)


      1 # Changelog
      2 
      3 - 0.2.1 (2024-10-13)
      4   * Adds an INLINE pragma to an internal step function.
      5   * 'hmac' no longer calls 'hmac_lazy', which has no practical effect
      6     other than to clean up profiling reports generated by GHC.
      7 
      8 - 0.2.0 (2024-10-07)
      9   * 'hmac' and 'hmac_lazy' now hash long keys before computing a HMAC,
     10     instead of throwing an error, matching RFC 2104's suggested behaviour.
     11 
     12 - 0.1.0 (2024-09-14)
     13   * Initial release, supporting SHA256 and HMAC-SHA256 on strict and lazy
     14     bytestrings.