longshot 0.1.0.1 → 0.1.0.2
raw patch · 4 files changed
+14/−14 lines, 4 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Crypto.Longshot: limitSearchLength :: Int
Files
- ChangeLog.md +9/−0
- README.md +1/−1
- longshot.cabal +3/−2
- src/Crypto/Longshot.hs +1/−11
+ ChangeLog.md view
@@ -0,0 +1,9 @@+# Changelog++## 0.1.0.0+* First public release+* Strict and deep search mode+* Support various search length, character sets and hashers++## 0.1.0.2+* Fixed Hackage metadata
README.md view
@@ -4,7 +4,7 @@ -[](https://travis-ci.com/thyeem/longshot)[](https://hackage.haskell.org/package/longshot)+[](https://travis-ci.com/thyeem/longshot) [](https://hackage.haskell.org/package/longshot) # longshot
longshot.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 857dfbccbbb8d9c01bbfa335be0213c1d8a2db7e98735035e11853ea7da83878+-- hash: 4cf3d32f97b4605f2bd729574881eb5df14e31adef0431f928343ea04e268c38 name: longshot-version: 0.1.0.1+version: 0.1.0.2 synopsis: Fast Brute-force search using parallelism description: Longshot enables to search for preimages from a given hash value using a brute-force method based on parallelism.@@ -32,6 +32,7 @@ build-type: Simple extra-source-files: README.md+ ChangeLog.md source-repository head type: git
src/Crypto/Longshot.hs view
@@ -16,17 +16,7 @@ -- -- When not provided as options in CUI, the following values are used. ---module Crypto.Longshot- ( defChars- , defSearchLength- , defNumPrefix- , defNumBind- , image- , byteChars- , bytePrefixes- , toKey- )-where+module Crypto.Longshot where import Control.Monad import qualified Data.ByteString.Char8 as C