mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
23 lines
2.2 KiB
Markdown
23 lines
2.2 KiB
Markdown
<p align="center">
|
|
<img
|
|
alt="dalek-cryptography logo: a dalek with edwards curves as sparkles coming out of its radar-schnozzley blaster thingies"
|
|
width="200px"
|
|
src="https://cdn.jsdelivr.net/gh/dalek-cryptography/curve25519-dalek/docs/assets/dalek-logo-clear.png"/>
|
|
</p>
|
|
|
|
# Dalek elliptic curve cryptography
|
|
|
|
This repo contains pure-Rust crates for elliptic curve cryptography:
|
|
|
|
|
|
| Crate | Description | Crates.io | Docs | CI |
|
|
-------------------------------------------|----------------|-----------|------|-------
|
|
| [`curve25519-dalek`](./curve25519-dalek) | A library for arithmetic over the Curve25519 and Ristretto elliptic curves and their associated scalars. | [](https://crates.io/crates/curve25519-dalek) | [](https://docs.rs/curve25519-dalek) | [](https://github.com/dalek-cryptography/curve25519-dalek/actions/workflows/rust.yml) |
|
|
| [`ed25519-dalek`](./ed25519-dalek) | An implementation of the EdDSA digital signature scheme over Curve25519. | [](https://crates.io/crates/ed25519-dalek) | [](https://docs.rs/ed25519-dalek) | [](https://github.com/dalek-cryptography/ed25519-dalek/actions/workflows/rust.yml) |
|
|
| [`x25519-dalek`](./x25519-dalek) | An implementation of elliptic curve Diffie-Hellman key exchange over Curve25519. | [](https://crates.io/crates/x25519-dalek) | [](https://docs.rs/x25519-dalek) | [](https://travis-ci.org/dalek-cryptography/x25519-dalek) |
|
|
|
|
There is also the [`curve25519-dalek-derive`](./curve25519-dalek-derive) crate, which is just a helper crate with some macros that make curve25519-dalek easier to write.
|
|
|
|
# Contributing
|
|
|
|
Please see [`CONTRIBUTING.md`](./CONTRIBUTING.md).
|