mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-09 14:47:56 -05:00
chore: fix incorrect number in seed_bytes for rerand noise check test
- has no impact on correctness of test, in addition the size of the array would have been the same due to integer division
This commit is contained in:
committed by
IceTDrinker
parent
d68645c493
commit
e5a15b33d9
@@ -951,7 +951,7 @@ fn sanity_check_encrypt_br_rerand_dp_ks_ms_pbs(meta_params: MetaParameters) {
|
||||
let id_lut = sks.generate_lookup_table(|x| x);
|
||||
|
||||
for idx in 0..10 {
|
||||
let seed_bytes = vec![idx as u8; 258 / 8];
|
||||
let seed_bytes = vec![idx as u8; 256 / 8];
|
||||
let rerand_xof_seed = XofSeed::new(seed_bytes, *b"TFHE_Enc");
|
||||
|
||||
// Manually build as the seed is made non Clone to protect user normally
|
||||
|
||||
Reference in New Issue
Block a user