pub fn sign_without_clone<R: RngCore + CryptoRng, M: PreprocessMachine>(
rng: &mut R,
keys: HashMap<Participant, <M::SignMachine as SignMachine<M::Signature>>::Keys>,
params: HashMap<Participant, <M::SignMachine as SignMachine<M::Signature>>::Params>,
machines: HashMap<Participant, M>,
msg: &[u8],
) -> M::SignatureAvailable on crate feature
tests only.Expand description
Execute the signing protocol, randomly caching various machines to ensure they can cache successfully.