Skip to content

Commit 323f152

Browse files
committed
replace references to evercrypt
1 parent d002455 commit 323f152

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Cargo.lock
33
**/*.rs.bk
44
.vscode/
5-
evercrypt_provider/target
5+
libcrux_provider/target
66
no-std-support-check/target
77
rust_crypto_provider/target
88
traits/target/

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Instead it expects an implementation of the [HpkeCrypto] trait.
5050
[crate-link]: https://crates.io/crates/hpke-rs
5151
[docs-badge]: https://img.shields.io/badge/docs-rs-blue.svg?style=for-the-badge
5252
[docs-link]: https://docs.rs/hpke-rs
53-
[evercrypt]: https://github.com/franziskuskiefer/evercrypt-rust
53+
[libcrux]: https://github.com/cryspen/libcrux
5454
[hpke (RFC 9180)]: https://www.rfc-editor.org/rfc/rfc9180.html
5555
[hpkecrypto]: https://docs.rs/hpke-rs-crypto
5656
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge

libcrux_provider/Readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# HPKE Crypto provider using Evercrypt
1+
# HPKE Crypto provider using Libcrux
22

33
[![crates.io][crate-badge]][crate-link]
44
[![Docs][docs-badge]][docs-link]
55
![Rust Version][rustc-image]
66

7-
This crate provides an implementation of the [HpkeCrypto] trait using [Evercrypt].
7+
This crate provides an implementation of the [HpkeCrypto] trait using [Libcrux].
88

99
Please see [hpke-rs] for more details.
1010

11-
[evercrypt]: https://crates.io/crates/evercrypt
12-
[hpkecrypto]: https://github.com/franziskuskiefer/hpke-rs/tree/main/traits
11+
[libcrux]: https://crates.io/crates/libcrux
12+
[hpkecrypto]: https://github.com/cryspen/hpke-rs/tree/main/traits
1313
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge
1414
[docs-badge]: https://img.shields.io/badge/docs-rs-blue.svg?style=for-the-badge
15-
[docs-link]: https://docs.rs/hpke-rs-evercrypt
16-
[crate-badge]: https://img.shields.io/crates/v/hpke-rs-evercrypt.svg?style=for-the-badge
17-
[crate-link]: https://crates.io/crates/hpke-rs-evercrypt
18-
[hpke-rs]: https://github.com/franziskuskiefer/hpke-rs
15+
[docs-link]: https://docs.rs/hpke-rs-libcrux
16+
[crate-badge]: https://img.shields.io/crates/v/hpke-rs-libcrux.svg?style=for-the-badge
17+
[crate-link]: https://crates.io/crates/hpke-rs-libcrux
18+
[hpke-rs]: https://github.com/cryspen/hpke-rs

publish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ set -e
66
# "hpke-rs-crypto
77
cd traits && cargo publish $@ && cd -
88

9-
# hpke-rs-evercrypt
10-
# cd evercrypt_provider && cargo publish $@ && cd -
9+
# hpke-rs-libcrux
10+
cd libcrux_provider && cargo publish $@ && cd -
1111

1212
# hpke-rs-rust-crypto
1313
cd rust_crypto_provider && cargo publish $@ && cd -

tests/test_hpke_kat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ fn test_kat() {
297297
let now = Instant::now();
298298
kat::<HpkeLibcrux>(tests);
299299
let time = now.elapsed();
300-
log::info!("Test vectors with Evercrypt took: {}s", time.as_secs());
300+
log::info!("Test vectors with Libcrux took: {}s", time.as_secs());
301301
}
302302
}
303303

0 commit comments

Comments
 (0)