You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubstatic ref RANDOM_CIPHER_BLOWFISH:CipherBlowfish = CipherBlowfish::new_from_slice(&Rng::gen::<Seed>(&mutThreadRng::default())).expect("it could not generate key");
21
+
pubstatic ref RANDOM_CIPHER_BLOWFISH:CipherBlowfish = CipherBlowfish::new_from_slice(&Rng::random::<Seed>(&mutThreadRng::default())).expect("it could not generate key");
22
22
23
23
/// The constant cipher for testing.
24
24
pubstatic ref ZEROED_TEST_CIPHER_BLOWFISH:CipherBlowfish = CipherBlowfish::new_from_slice(&[0u8;32]).expect("it could not generate key");
0 commit comments