cryptonite 0.11 → 0.12
raw patch · 3 files changed
+11/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- cbits/ed448/x448.c +6/−1
- cryptonite.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.12++* Fix compilation issue with Ed448 on 32 bits machine.+ ## 0.11 * Truncate hashing correctly for DSA
cbits/ed448/x448.c view
@@ -11,7 +11,12 @@ #include <stdint.h> #include "x448.h" -#define WBITS 64 /* TODO */+#ifdef ARCH_X86_64+#define WBITS 64+#else+#define WBITS 32+#endif+ #define LBITS (WBITS * 7 / 8) #define X448_LIMBS (448/LBITS)
cryptonite.cabal view
@@ -1,5 +1,5 @@ Name: cryptonite-Version: 0.11+Version: 0.12 Synopsis: Cryptography Primitives sink Description: A repository of cryptographic primitives.