Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
benchmarks/ | H | 11-Oct-2015 | - | 45 | 27 | |
src/ | H | 11-Oct-2015 | - | 6,056 | 4,049 | |
tests/ | H | 11-Oct-2015 | - | 145 | 107 | |
.travis.yml | H A D | 11-Oct-2015 | 5.2 KiB | 111 | 91 | |
CHANGELOG.md | H A D | 11-Oct-2015 | 1.3 KiB | 44 | 34 | |
CONTRIBUTING.md | H A D | 11-Oct-2015 | 1.7 KiB | 44 | 31 | |
README.md | H A D | 11-Oct-2015 | 1.9 KiB | 56 | 37 | |
Setup.hs | H A D | 11-Oct-2015 | 72 | 4 | 3 | |
ed25519.cabal | H A D | 03-May-2022 | 4.1 KiB | 151 | 126 |
README.md
1# Minimal package for ed25519 signatures 2 3[![Build Status](https://travis-ci.org/thoughtpolice/hs-ed25519.png?branch=master)](https://travis-ci.org/thoughtpolice/hs-ed25519) 4[![MIT](http://b.repl.ca/v1/license-MIT-blue.png)](http://en.wikipedia.org/wiki/MIT_License) 5[![Haskell](http://b.repl.ca/v1/language-haskell-lightgrey.png)](http://www.haskell.org) 6 7This package implements minimal bindings to the [ed25519][] signature 8scheme. It's designed to be small, with no dependencies, and fast. It 9also comes with extensive guidelines and detailed documentation. It 10should be relatively easy to both depend on directly with Cabal or 11even copy into any projects that need it directly. 12 13For full details (including notes on the underlying implementation), 14check out [the docs][]. 15 16[ed25519]: http://ed25519.cr.yp.to/ 17[SUPERCOP]: http://bench.cr.yp.to/supercop.html 18[the docs]: http://hackage.haskell.org/package/ed25519/docs/Crypto-Sign-Ed25519.html 19 20# Installation 21 22It's just a `cabal install` away on [Hackage][]: 23 24```bash 25$ cabal install ed25519 26``` 27 28# Join in 29 30Be sure to read the [contributing guidelines][contribute]. File bugs 31in the GitHub [issue tracker][]. 32 33Master [git repository][gh]: 34 35* `git clone https://github.com/thoughtpolice/hs-ed25519.git` 36 37There's also a [BitBucket mirror][bb]: 38 39* `git clone https://bitbucket.org/thoughtpolice/hs-ed25519.git` 40 41# Authors 42 43See [AUTHORS.txt](https://raw.github.com/thoughtpolice/hs-ed25519/master/AUTHORS.txt). 44 45# License 46 47MIT. See 48[LICENSE.txt](https://raw.github.com/thoughtpolice/hs-ed25519/master/LICENSE.txt) 49for terms of copyright and redistribution. 50 51[contribute]: https://github.com/thoughtpolice/hs-ed25519/blob/master/CONTRIBUTING.md 52[issue tracker]: http://github.com/thoughtpolice/hs-ed25519/issues 53[gh]: http://github.com/thoughtpolice/hs-ed25519 54[bb]: http://bitbucket.org/thoughtpolice/hs-ed25519 55[Hackage]: http://hackage.haskell.org/package/ed25519 56