Skip to main content

Multi

Trait Multi 

Source
pub trait Multi: RsaMode {
    type OutputType: AsRef<[u32]> + AsMut<[u32]>;
}
Expand description

Defines the output type of RSA multiplications.

Required Associated Types§

Source

type OutputType: AsRef<[u32]> + AsMut<[u32]>

The type of the output produced by the operation.

Implementors§

Source§

impl Multi for Op512

Available on crate feature unstable only.
Source§

type OutputType = [u32; 32]

Source§

impl Multi for Op1024

Available on crate feature unstable only.
Source§

type OutputType = [u32; 64]

Source§

impl Multi for Op1536

Available on crate feature unstable only.
Source§

type OutputType = [u32; 96]

Source§

impl Multi for Op2048

Available on crate feature unstable only.
Source§

type OutputType = [u32; 128]