Popularity
3.6
Stable
Activity
0.0
Stable
3
2
1
Monthly Downloads: 10
Programming language: Haskell
License: LicenseRef-OtherLicense
Tags:
Cryptography
Digest
Latest version: v0.0.1
digest-pure alternatives and similar packages
Based on the "Cryptography" category.
Alternatively, view digest-pure alternatives based on common mentions on social networks and blogs.
-
merkle-tree
An implementation of a Merkle Tree and merkle tree proofs -
pedersen-commitment
An implementation of Pedersen commitment schemes -
arithmetic-circuits
Arithmetic circuits for zero knowledge proof systems -
galois-field
Finite field and algebraic extension field arithmetic -
cryptohash
efficient and practical cryptohashing in haskell. DEPRECATED in favor of cryptonite -
oblivious-transfer
Oblivious transfer for multiparty computation -
elliptic-curve
A polymorphic interface for elliptic curve operations -
cipher-aes
DEPRECATED - use cryptonite - a comprehensive fast AES implementation for haskell that supports aesni and advanced cryptographic modes. -
crypto-api
Haskell generic interface (type classes) for cryptographic algorithms -
ed25519
Minimal ed25519 Haskell package, binding to the ref10 SUPERCOP implementation. -
cipher-blowfish
DEPRECATED by cryptonite; A collection of cryptographic block and stream ciphers in haskell -
signable
Deterministic serialisation and signatures with proto-lens and protobuf-elixir support -
skein
Skein, a family of cryptographic hash functions. Includes Skein-MAC as well. -
galois-fft
Finite field polynomial arithmetic based on fast Fourier transforms -
qnap-decrypt
Decrypt files encrypted by the QNAP's Hybrid Backup Sync -
cryptohash-sha256
Fast, pure and practical SHA-256 implementation -
crypto-pubkey-types
Crypto Public Key algorithm generic types. -
crypto-pubkey
DEPRECATED - use cryptonite - Cryptographic public key related algorithms in haskell (RSA,DSA,DH,ElGamal) -
cipher-aes128
Based on cipher-aes, but using a crypto-api interface and providing resulting IVs for each mode -
cprng-aes
Crypto Pseudo Random Number Generator using AES in counter mode -
crypto-enigma
A Haskell Enigma machine simulator with rich display and machine state details.
Build time-series-based applications quickly and at scale.
InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of digest-pure or a related project?
Popular Comparisons
README
digest-pure
Introduction
This is a pure Haskell implementation of the digest package.
Unit test
- For random ByteStrings: does the output of digest-pure match that of digest?
Benchmarks
Benchmarked on a Mac Mini 2010, 2.4GHz, using Data.ByteString.Lazy, best out of five.
adler32
$ time ./adler32 data
165386662
real 0m0.447s
user 0m0.150s
sys 0m0.295s
adler32-pure
$ time ./adler32-pure data
165386662
real 0m2.224s
user 0m1.924s
sys 0m0.298s