pub trait Multi: RsaMode {
type OutputType: AsRef<[u32]> + AsMut<[u32]>;
}Available on crate feature
unstable only.Expand description
Defines the output type of RSA multiplications.
Required Associated Types§
Sourcetype OutputType: AsRef<[u32]> + AsMut<[u32]>
type OutputType: AsRef<[u32]> + AsMut<[u32]>
The type of the output produced by the operation.