We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d332773 commit 39e3878Copy full SHA for 39e3878
timeboost-types/src/decryption.rs
@@ -403,7 +403,6 @@ impl DkgAccumulator {
403
return Ok(());
404
}
405
406
- let aad: &[u8; 3] = b"dkg";
407
let vess = Vess::new_fast();
408
let store = self.store.clone();
409
let mode = self.mode.clone();
@@ -417,7 +416,7 @@ impl DkgAccumulator {
417
416
store.sorted_keys(),
418
bundle.vess_ct(),
419
bundle.comm(),
420
- aad,
+ DKG_AAD,
421
)?;
422
423
AccumulatorMode::Resharing(combkey) => {
@@ -429,7 +428,7 @@ impl DkgAccumulator {
429
428
430
431
432
433
*pub_share,
434
435
0 commit comments