File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 2
2
Cargo.lock
3
3
** /* .rs.bk
4
4
.vscode /
5
- evercrypt_provider /target
5
+ libcrux_provider /target
6
6
no-std-support-check /target
7
7
rust_crypto_provider /target
8
8
traits /target /
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Instead it expects an implementation of the [HpkeCrypto] trait.
50
50
[ crate-link ] : https://crates.io/crates/hpke-rs
51
51
[ docs-badge ] : https://img.shields.io/badge/docs-rs-blue.svg?style=for-the-badge
52
52
[ docs-link ] : https://docs.rs/hpke-rs
53
- [ evercrypt ] : https://github.com/franziskuskiefer/evercrypt-rust
53
+ [ libcrux ] : https://github.com/cryspen/libcrux
54
54
[ hpke (RFC 9180) ] : https://www.rfc-editor.org/rfc/rfc9180.html
55
55
[ hpkecrypto ] : https://docs.rs/hpke-rs-crypto
56
56
[ rustc-image ] : https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge
Original file line number Diff line number Diff line change 1
- # HPKE Crypto provider using Evercrypt
1
+ # HPKE Crypto provider using Libcrux
2
2
3
3
[ ![ crates.io] [ crate-badge ]] [ crate-link ]
4
4
[ ![ Docs] [ docs-badge ]] [ docs-link ]
5
5
![ Rust Version] [ rustc-image ]
6
6
7
- This crate provides an implementation of the [ HpkeCrypto] trait using [ Evercrypt ] .
7
+ This crate provides an implementation of the [ HpkeCrypto] trait using [ Libcrux ] .
8
8
9
9
Please see [ hpke-rs] for more details.
10
10
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
13
13
[ rustc-image ] : https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge
14
14
[ 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
Original file line number Diff line number Diff line change 6
6
# "hpke-rs-crypto
7
7
cd traits && cargo publish $@ && cd -
8
8
9
- # hpke-rs-evercrypt
10
- # cd evercrypt_provider && cargo publish $@ && cd -
9
+ # hpke-rs-libcrux
10
+ cd libcrux_provider && cargo publish $@ && cd -
11
11
12
12
# hpke-rs-rust-crypto
13
13
cd rust_crypto_provider && cargo publish $@ && cd -
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ fn test_kat() {
297
297
let now = Instant :: now ( ) ;
298
298
kat :: < HpkeLibcrux > ( tests) ;
299
299
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( ) ) ;
301
301
}
302
302
}
303
303
You can’t perform that action at this time.
0 commit comments