Skip to content

Commit a537a1c

Browse files
committed
Update links to point to new official repo and CI.
1 parent c657ab6 commit a537a1c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ If you have questions or comments, please feel free to email the
44
authors.
55

66
For feature requests, suggestions, and bug reports, please open an
7-
issue on [our Github](https://github.com/isislovecruft/subtle). (Or,
7+
issue on [our Github](https://github.com/dalek-cryptography/subtle). (Or,
88
send us an email if you're opposed to using Github for whatever reason.)
99

1010
Patches are welcomed as pull requests on
11-
[our Github](https://github.com/isislovecruft/subtle), as well as by
11+
[our Github](https://github.com/dalek-cryptography/subtle), as well as by
1212
email (preferably sent to all of the authors listed in `Cargo.toml`).
1313

1414
We're happy to take generalised utility code, provided the code is:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Isis Lovecruft <[email protected]>",
55
"Henry de Valence <[email protected]>"]
66
readme = "README.md"
77
license = "CC0-1.0"
8-
repository = "https://github.com/isislovecruft/subtle"
8+
repository = "https://github.com/dalek-cryptography/subtle"
99
documentation = "https://docs.rs/subtle"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["cryptography", "constant-time", "utilities"]
@@ -16,7 +16,7 @@ exclude = [
1616
]
1717

1818
[badges]
19-
travis-ci = { repository = "isislovecruft/subtle", branch = "master"}
19+
travis-ci = { repository = "dalek-cryptography/subtle", branch = "master"}
2020

2121
[dependencies.num-traits]
2222
optional = true

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# 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)
2+
# 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)
33

44
**Pure-Rust traits and utilities for constant-time cryptographic implementations.**
55

@@ -25,8 +25,8 @@ library does **not** provide much in the way of assurance against deliberate
2525
misuse. Instead, it is a low-level library, mostly of bit-flipping tricks,
2626
intended for other cryptographers who would like to implement their own
2727
constant-time libraries. (For an example usage of this library, please see
28-
[curve25519-dalek](https://github.com/isislovecruft/curve25519-dalek) and
29-
[ed25519-dalek](https://github.com/isislovecruft/ed25519-dalek).)
28+
[curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) and
29+
[ed25519-dalek](https://github.com/dalek-cryptography/ed25519-dalek).)
3030

3131
**USE AT YOUR OWN RISK**
3232

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ pub fn byte_is_nonzero(b: u8) -> Mask {
479479
/// ```
480480
///
481481
/// This function is commonly used in various cryptographic applications, such
482-
/// as [signature verification](https://github.com/isislovecruft/ed25519-dalek/blob/0.3.2/src/ed25519.rs#L280),
482+
/// as [signature verification](https://github.com/dalek-cryptography/ed25519-dalek/blob/0.3.2/src/ed25519.rs#L280),
483483
/// among many other applications.
484484
///
485485
/// # Return

0 commit comments

Comments
 (0)