cryptohash 0.5.2 → 0.5.3
raw patch · 2 files changed
+8/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- cbits/bitfn.h +4/−0
- cryptohash.cabal +4/−3
cbits/bitfn.h view
@@ -161,6 +161,10 @@ #ifdef __MINGW32__ # define LITTLE_ENDIAN 1234 # define BYTE_ORDER LITTLE_ENDIAN+#elif defined(__FreeBSD__)+ # include <sys/endian.h>+#elif defined(__APPLE__)+ # include <machine/endian.h> #else # include <endian.h> #endif
cryptohash.cabal view
@@ -1,5 +1,5 @@ Name: cryptohash-Version: 0.5.2+Version: 0.5.3 Description: A collection of crypto hashes, with a practical incremental and one-pass, pure APIs, with performance close to the fastest implementations available in others languages.@@ -8,8 +8,9 @@ License: BSD3 License-file: LICENSE-Author: Vincent Hanquez-Maintainer: vincent@snarc.org+Copyright: Vincent Hanquez <vincent@snarc.org>+Author: Vincent Hanquez <vincent@snarc.org>+Maintainer: Vincent Hanquez <vincent@snarc.org> Synopsis: collection of crypto hashes, fast, pure and practical Category: Data, Cryptography Build-Type: Simple