pub trait Retrieve {
type Output;
// Required method
fn retrieve(&self) -> Self::Output;
}
Expand description
A generalization for numbers kept in optimized representations (e.g. Montgomery) that can be converted back to the original form.
Required Associated Types§
Required Methods§
Implementors§
Source§impl Retrieve for BoxedMontyForm
Available on crate feature alloc
only.
impl Retrieve for BoxedMontyForm
Available on crate feature
alloc
only.