Struct botan::KeySpec[][src]

pub struct KeySpec { /* fields omitted */ }

Specifies valid keylengths for symmetric ciphers/MACs

Implementations

impl KeySpec[src]

#[must_use]pub fn is_valid_keylength(&self, keylen: usize) -> bool[src]

Return true if the specified key length is valid for this object

#[must_use]pub fn minimum_keylength(&self) -> usize[src]

Return the minimum supported keylength

#[must_use]pub fn maximum_keylength(&self) -> usize[src]

Return the maximum supported keylength

#[must_use]pub fn keylength_multiple(&self) -> usize[src]

Return the required multiple of the keylength

That is each key must be N*keylength_multiple() for some N

Auto Trait Implementations

impl RefUnwindSafe for KeySpec

impl Send for KeySpec

impl Sync for KeySpec

impl Unpin for KeySpec

impl UnwindSafe for KeySpec

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.