chore: fix README package name, enable zeroize on crates, rand_core removed for reexport #4

Merged
breakingbread merged 3 commits from chore/rand-zeroize-improvement into master 2026-07-02 08:19:22 +02:00
7 changed files with 7 additions and 7 deletions
Showing only changes of commit 8c0f1e2611 - Show all commits
+1 -1
View File
@@ -7,8 +7,8 @@ extern crate criterion;
use criterion::Criterion;
use opaque_vx::*;
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
#[cfg(feature = "ristretto255")]
static SUFFIX: &str = "ristretto255";
+1 -1
View File
@@ -429,8 +429,8 @@ mod test {
use std::iter;
use ed25519_dalek::{Signer, SigningKey, Verifier, VerifyingKey};
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
use super::*;
+1 -1
View File
@@ -111,8 +111,8 @@ fn ecdsa() {
use p256::ecdsa::signature::RandomizedDigestSigner;
use p256::ecdsa::{Signature, SigningKey, VerifyingKey};
use p256::{NistP256, PublicKey};
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
use sha2::Sha256;
use crate::tests::mock_rng::CycleRng;
+1 -1
View File
@@ -307,8 +307,8 @@ mod tests {
ServerRegistrationStartResult, ServerSetup,
};
use hkdf::Hkdf;
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
macro_rules! test {
($mod:ident, $point:ty) => {
+1 -1
View File
@@ -12,8 +12,8 @@ use generic_array::typenum::{Sum, Unsigned};
use proptest::collection::vec;
use proptest::prelude::*;
use rand::Rng;
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
use voprf::Group as _;
use crate::ciphersuite::{CipherSuite, KeGroup, OprfGroup, OprfHash};
+1 -1
View File
@@ -15,9 +15,9 @@ use generic_array::{ArrayLength, GenericArray};
#[cfg(feature = "kem")]
use ml_kem::MlKem768;
use rand::SeedableRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
use rand_chacha::ChaCha20Rng;
use rand::rand_core::UnwrapErr;
use serde_json::Value;
use subtle::ConstantTimeEq;
use voprf::Group as _;
+1 -1
View File
@@ -26,8 +26,8 @@ use digest::OutputSizeUser;
use generic_array::typenum::Sum;
use generic_array::{ArrayLength, GenericArray};
use rand::Rng;
use rand::rngs::SysRng;
use rand::rand_core::UnwrapErr;
use rand::rngs::SysRng;
use serde_json::Value;
#[allow(non_snake_case)]