Update links to point to new official repos.

This commit is contained in:
Isis Lovecruft 2018-01-20 00:54:46 +00:00
parent 682178dd8d
commit 4b8f2963d8
Failed to extract signature
2 changed files with 5 additions and 5 deletions

View file

@ -5,8 +5,8 @@ authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"] "Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md" readme = "README.md"
license = "BSD-3-Clause" license = "BSD-3-Clause"
repository = "https://github.com/isislovecruft/curve25519-dalek" repository = "https://github.com/dalek-cryptography/curve25519-dalek"
homepage = "https://code.ciph.re/isis/curve25519-dalek" homepage = "https://dalek.rs/curve25519-dalek"
documentation = "https://docs.rs/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek"
categories = ["cryptography", "no-std"] categories = ["cryptography", "no-std"]
keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"] keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"]

View file

@ -1,5 +1,5 @@
# curve25519-dalek [![](https://img.shields.io/crates/v/curve25519-dalek.svg)](https://crates.io/crates/curve25519-dalek) [![](https://docs.rs/curve25519-dalek/badge.svg)](https://docs.rs/curve25519-dalek) [![](https://travis-ci.org/isislovecruft/curve25519-dalek.svg?branch=master)](https://travis-ci.org/isislovecruft/curve25519-dalek) # curve25519-dalek [![](https://img.shields.io/crates/v/curve25519-dalek.svg)](https://crates.io/crates/curve25519-dalek) [![](https://docs.rs/curve25519-dalek/badge.svg)](https://docs.rs/curve25519-dalek) [![](https://travis-ci.org/dalek-cryptography/curve25519-dalek.svg?branch=master)](https://travis-ci.org/dalek-cryptography/curve25519-dalek)
<img <img
width="50%" width="50%"
@ -36,7 +36,7 @@ decryption or signing and verification. Instead, it is a low-level library,
intended for other cryptographers who would like to implement their own intended for other cryptographers who would like to implement their own
primitives using this curve. (For an example of how one would implement a primitives using this curve. (For an example of how one would implement a
signature scheme using this library, see signature scheme using this library, see
[ed25519-dalek](https://github.com/isislovecruft/ed25519-dalek).) [ed25519-dalek](https://github.com/dalek-cryptography/ed25519-dalek).)
**USE AT YOUR OWN RISK** **USE AT YOUR OWN RISK**
@ -81,7 +81,7 @@ We intend to stabilise the following before curve25519-dalek-1.0.0:
## Contributing ## Contributing
Please see Please see
[CONTRIBUTING.md](https://github.com/isislovecruft/curve25519-dalek/blob/master/CONTRIBUTING.md). [CONTRIBUTING.md](https://github.com/dalek-cryptography/curve25519-dalek/blob/master/CONTRIBUTING.md).
Patches and pull requests should be make against the `develop` Patches and pull requests should be make against the `develop`
branch, **not** `master`. branch, **not** `master`.