• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmarks/H11-Oct-2015-4527

src/H11-Oct-2015-6,0564,049

tests/H11-Oct-2015-145107

.travis.ymlH A D11-Oct-20155.2 KiB11191

CHANGELOG.mdH A D11-Oct-20151.3 KiB4434

CONTRIBUTING.mdH A D11-Oct-20151.7 KiB4431

README.mdH A D11-Oct-20151.9 KiB5637

Setup.hsH A D11-Oct-201572 43

ed25519.cabalH A D03-May-20224.1 KiB151126

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