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 (571B)


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