crypto-numbers 0.1.0 → 0.1.1
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~crypto-random-apiPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: crypto-random-api
API changes (from Hackage documentation)
Files
- Tests/RNG.hs +2/−2
- crypto-numbers.cabal +2/−2
Tests/RNG.hs view
@@ -24,8 +24,8 @@ in (b:l, g'') instance CPRG Rng where- cprgGenBytes g len = first B.pack $ getBytes len g- cprgSupplyEntropy g e = reseed e g+ cprgGenBytes len g = first B.pack $ getBytes len g+ cprgSupplyEntropy e g = reseed e g cprgNeedReseed _ = maxBound reseed :: B.ByteString -> Rng -> Rng
crypto-numbers.cabal view
@@ -1,5 +1,5 @@ Name: crypto-numbers-Version: 0.1.0+Version: 0.1.1 Description: Cryptographic numbers: functions and algorithms License: BSD3 License-file: LICENSE@@ -17,7 +17,7 @@ Build-Depends: base >= 4 && < 5 , bytestring , vector- , crypto-random-api+ , crypto-random-api >= 0.2 && < 0.3 Exposed-modules: Crypto.Number.ModArithmetic Crypto.Number.Serialize Crypto.Number.Generate