@hackage haskell-opentimestamps0.5.5.2
Haskell implementation of OpenTimestamps
Categories
License
BSD-3-Clause
Maintainer
a.h.m.donkers@photonsphere.org
Links
Versions
Installation
Dependencies (19)
- aeson >=2.0 && <3
- base >=4.7 && <5
- base16-bytestring >=1.0 && <2
- binary >=0.8 && <1
- bitcoind-rpc >=0.3 && <1
- bytes >=0.17 && <1 Show all…
Dependents (1)
@hackage/haskell-opentimestamps-client
This is a Haskell library for working with OpenTimestamps. It's on Hackage here: haskell-opentimestamps. OpenTimestamps is a protocol for creating and verifying timestamps for digital files, which can be used to prove that a file existed at a certain point in time.
The library provides functionality for:
- Stamping: Creating new timestamps for files by submitting their hashes to a network of calendar servers.
- Information: Extracting information from timestamp files.
- Pruning: Pruning existing timestamps.
- Upgrading: Upgrade remote calendar timestamps to be locally verifiable.
- Verification: Verifying the integrity and validity of existing timestamps.
The project has a number of dependencies, including cryptonite for cryptographic operations, http-client for making requests to calendar servers and haskoin-code and bitcoin-rpc to make RPC-calls to a locally running 'blocksonly' pruned Bitcoin node, which is required for Verification.
Also you will need to have a libsecp256k1 package (Debian: libsecp256k1-dev) installed on your Linux distribution (beware: it needs to be < 0.7.x because of deprecated functions in 0.7.x).
Notes on tests:
- At least one of the tests requires a running local bitcoin node (pruned node is fine).
There is also a client program that uses this library: It's on Hackage here: haskell-opentimestamps-client.