Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/kem/kiltz_vahlis_one.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl IBKEM for KV1 {
let u: G1Affine = rand_g1(rng).into();
let z = pg_curve::pairing(&alpha, &g);

let hzero = G1Affine::default();
let hzero: G1Affine = rand_g1(rng).into();
Comment thread
dobby-coder[bot] marked this conversation as resolved.
let mut h = HashParameters([G1Affine::default(); N]);
for hi in h.0.iter_mut() {
*hi = rand_g1(rng).into();
Expand Down
Loading