curve25519-dalek-source/REAME.md

20 lines
405 B
Markdown
Raw Normal View History

2016-12-08 11:34:56 +00:00
# ed25519: a Rust implementation
2016-12-01 00:40:48 +00:00
2016-12-08 11:34:56 +00:00
Fast and efficient Rust implementation of ed25519 key generation, signing, and
verification.
2016-12-01 00:40:48 +00:00
2016-12-08 11:34:56 +00:00
# Installation
To install, add the following to the dependencies section of your project's
`Cargo.toml`:
ed25519 = "0.1.0"
Then, in your library or executable source, add:
extern crate ed25519
# TODO
* Maybe add methods to make exporting keys for backup easier.