Skip to content
Snippets Groups Projects
Unverified Commit a537a1c6 authored by Isis Lovecruft's avatar Isis Lovecruft
Browse files

Update links to point to new official repo and CI.

parent c657ab69
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,11 @@ If you have questions or comments, please feel free to email the
authors.
For feature requests, suggestions, and bug reports, please open an
issue on [our Github](https://github.com/isislovecruft/subtle). (Or,
issue on [our Github](https://github.com/dalek-cryptography/subtle). (Or,
send us an email if you're opposed to using Github for whatever reason.)
Patches are welcomed as pull requests on
[our Github](https://github.com/isislovecruft/subtle), as well as by
[our Github](https://github.com/dalek-cryptography/subtle), as well as by
email (preferably sent to all of the authors listed in `Cargo.toml`).
We're happy to take generalised utility code, provided the code is:
......
......@@ -5,7 +5,7 @@ authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"
license = "CC0-1.0"
repository = "https://github.com/isislovecruft/subtle"
repository = "https://github.com/dalek-cryptography/subtle"
documentation = "https://docs.rs/subtle"
categories = ["cryptography", "no-std"]
keywords = ["cryptography", "constant-time", "utilities"]
......@@ -16,7 +16,7 @@ exclude = [
]
[badges]
travis-ci = { repository = "isislovecruft/subtle", branch = "master"}
travis-ci = { repository = "dalek-cryptography/subtle", branch = "master"}
[dependencies.num-traits]
optional = true
......
# subtle [![](https://img.shields.io/crates/v/subtle.svg)](https://crates.io/crates/subtle) [![](https://docs.rs/subtle/badge.svg)](https://docs.rs/subtle) [![](https://travis-ci.org/isislovecruft/subtle.svg?branch=master)](https://travis-ci.org/isislovecruft/subtle)
# subtle [![](https://img.shields.io/crates/v/subtle.svg)](https://crates.io/crates/subtle) [![](https://docs.rs/subtle/badge.svg)](https://docs.rs/subtle) [![](https://travis-ci.org/dalek-cryptography/subtle.svg?branch=master)](https://travis-ci.org/dalek-cryptography/subtle)
**Pure-Rust traits and utilities for constant-time cryptographic implementations.**
......@@ -25,8 +25,8 @@ library does **not** provide much in the way of assurance against deliberate
misuse. Instead, it is a low-level library, mostly of bit-flipping tricks,
intended for other cryptographers who would like to implement their own
constant-time libraries. (For an example usage of this library, please see
[curve25519-dalek](https://github.com/isislovecruft/curve25519-dalek) and
[ed25519-dalek](https://github.com/isislovecruft/ed25519-dalek).)
[curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) and
[ed25519-dalek](https://github.com/dalek-cryptography/ed25519-dalek).)
**USE AT YOUR OWN RISK**
......
......@@ -479,7 +479,7 @@ pub fn byte_is_nonzero(b: u8) -> Mask {
/// ```
///
/// This function is commonly used in various cryptographic applications, such
/// as [signature verification](https://github.com/isislovecruft/ed25519-dalek/blob/0.3.2/src/ed25519.rs#L280),
/// as [signature verification](https://github.com/dalek-cryptography/ed25519-dalek/blob/0.3.2/src/ed25519.rs#L280),
/// among many other applications.
///
/// # Return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment