this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix needless borrow in test helper

+1 -1
+1 -1
crates/opake-core/src/crypto.rs
··· 302 302 // -- Key wrapping tests (x25519-hkdf-a256kw) -- 303 303 304 304 fn test_keypair() -> (StaticSecret, PublicKey) { 305 - let private = StaticSecret::random_from_rng(&mut OsRng); 305 + let private = StaticSecret::random_from_rng(OsRng); 306 306 let public = PublicKey::from(&private); 307 307 (private, public) 308 308 }