1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Index: b/cryptohash-sha256.cabal
===================================================================
--- a/cryptohash-sha256.cabal
+++ b/cryptohash-sha256.cabal
@@ -16,8 +16,6 @@ for instance, on an /Intel Core i7-3770/
compute a SHA-256 hash over 230 MiB of data in under one second.
(If, instead, you require a pure Haskell implementation and performance is secondary, please refer to the [SHA package](https://hackage.haskell.org/package/SHA).)
.
-
-.
Additionally, this package provides support for
.
- HMAC-SHA-256: SHA-256-based [Hashed Message Authentication Codes](https://en.wikipedia.org/wiki/HMAC) (HMAC)
@@ -25,6 +23,13 @@ Additionally, this package provides supp
.
conforming to [RFC6234](https://tools.ietf.org/html/rfc6234), [RFC4231](https://tools.ietf.org/html/rfc4231), [RFC5869](https://tools.ietf.org/html/rfc5869), et al..
.
+=== Packages in the @cryptohash-*@ family
+.
+- <https://hackage.haskell.org/package/cryptohash-md5 cryptohash-md5>
+- <https://hackage.haskell.org/package/cryptohash-sha1 cryptohash-sha1>
+- <https://hackage.haskell.org/package/cryptohash-sha256 cryptohash-sha256>
+- <https://hackage.haskell.org/package/cryptohash-sha512 cryptohash-sha512>
+.
=== Relationship to the @cryptohash@ package and its API
.
This package has been originally a fork of @cryptohash-0.11.7@ because the @cryptohash@
@@ -54,6 +59,7 @@ tested-with: GHC == 7.4.2
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.1
+ , GHC == 8.4.1
extra-source-files: cbits/hs_sha256.h
changelog.md
@@ -74,7 +80,7 @@ library
Trustworthy
Unsafe
- build-depends: base >= 4.5 && < 4.11
+ build-depends: base >= 4.5 && < 4.13
, bytestring >= 0.9.2 && < 0.11
ghc-options: -Wall
|