pub trait RsaKeyBits: Sized + Copy + Clone + Default + Display + Debug + Sealed {
    const BITS: usize;
}
Expand description

The bit length of an RSA key.

The RsaPrivKey and RsaPubKey types take a B: RsaKeyBits type parameter indicating the key’s length in bits.

We only support bit lengths of 2048 or greater, as smaller bit lengths are considered insecure. If 2048 is considered insecure at some point in the future, then we will remove support for it, which will be a breaking change.

Required Associated Constants§

source

const BITS: usize

The number of bits.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl RsaKeyBits for B2048

source§

const BITS: usize = 2_048usize

source§

impl RsaKeyBits for B3072

source§

const BITS: usize = 3_072usize

source§

impl RsaKeyBits for B4096

source§

const BITS: usize = 4_096usize

source§

impl RsaKeyBits for B6144

source§

const BITS: usize = 6_144usize

source§

impl RsaKeyBits for B8192

source§

const BITS: usize = 8_192usize