Trait Multi

Source
pub trait Multi: RsaMode {
    type OutputType;
}
Available on crate feature unstable only.
Expand description

Defines the output type of RSA multiplications.

Required Associated Types§

Source

type OutputType

The type of the output produced by the operation.

Implementors§

Source§

impl Multi for Op512

Source§

type OutputType = [u32; 32]

Source§

impl Multi for Op1024

Source§

type OutputType = [u32; 64]

Source§

impl Multi for Op1536

Source§

type OutputType = [u32; 96]

Source§

impl Multi for Op2048

Source§

type OutputType = [u32; 128]