Skip to content

Commit ea905c5

Browse files
committed
Use the new statically typed API for rounds
1 parent 93b735c commit ea905c5

24 files changed

+2892
-4073
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ pub use entities::{AuxInfo, KeyShare, KeyShareChange, ThresholdKeyShare};
5454
pub use paillier::PaillierParams;
5555
pub use params::SchemeParams;
5656
pub use protocols::{
57-
AuxGen, AuxGenAssociatedData, AuxGenProtocol, InteractiveSigning, InteractiveSigningAssociatedData,
58-
InteractiveSigningProtocol, KeyInit, KeyInitAssociatedData, KeyInitProtocol, KeyRefresh, KeyRefreshAssociatedData,
59-
KeyRefreshProtocol, KeyResharing, KeyResharingProtocol, NewHolder, OldHolder, PrehashedMessage,
57+
AuxGen, AuxGenProtocol, AuxGenSharedData, InteractiveSigning, InteractiveSigningProtocol,
58+
InteractiveSigningSharedData, KeyInit, KeyInitProtocol, KeyInitSharedData, KeyRefresh, KeyRefreshProtocol,
59+
KeyRefreshSharedData, KeyResharing, KeyResharingProtocol, NewHolder, OldHolder, PrehashedMessage,
6060
};
6161
pub use uint::{BoxedEncoding, Extendable, MulWide};
6262

src/params/k256.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Scheme parametes for Secp256k1 curve (as implemented by [`k256']).
1+
//! Scheme parametes for Secp256k1 curve (as implemented by [`k256`]).
22
33
use core::fmt::Debug;
44

src/protocols.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ mod key_resharing;
1616
#[cfg(test)]
1717
mod misbehavior_tests;
1818

19-
pub use aux_gen::{AuxGen, AuxGenAssociatedData, AuxGenProtocol};
19+
pub use aux_gen::{AuxGen, AuxGenProtocol, AuxGenSharedData};
2020
pub use interactive_signing::{
21-
InteractiveSigning, InteractiveSigningAssociatedData, InteractiveSigningProtocol, PrehashedMessage,
21+
InteractiveSigning, InteractiveSigningProtocol, InteractiveSigningSharedData, PrehashedMessage,
2222
};
23-
pub use key_init::{KeyInit, KeyInitAssociatedData, KeyInitProtocol};
24-
pub use key_refresh::{KeyRefresh, KeyRefreshAssociatedData, KeyRefreshProtocol};
23+
pub use key_init::{KeyInit, KeyInitProtocol, KeyInitSharedData};
24+
pub use key_refresh::{KeyRefresh, KeyRefreshProtocol, KeyRefreshSharedData};
2525
pub use key_resharing::{KeyResharing, KeyResharingProtocol, NewHolder, OldHolder};

0 commit comments

Comments
 (0)