[][src]Struct secure_session::session::AesGcmSessionManager

pub struct AesGcmSessionManager<V: Serialize + DeserializeOwned> { /* fields omitted */ }

Uses the AES-GCM AEAD to provide signed, encrypted sessions.

Implementations

impl<V: Serialize + DeserializeOwned> AesGcmSessionManager<V>[src]

pub fn from_key(aead_key: [u8; 32]) -> Self[src]

Using a saved key, generate a AesGcmSessionManager.

Trait Implementations

impl<V: Serialize + DeserializeOwned + Send + Sync> SessionManager<V> for AesGcmSessionManager<V>[src]

fn is_encrypted(&self) -> bool[src]

Whether or not the sessions are encrypted: true

Auto Trait Implementations

impl<V> RefUnwindSafe for AesGcmSessionManager<V> where
    V: RefUnwindSafe

impl<V> Send for AesGcmSessionManager<V> where
    V: Send

impl<V> Sync for AesGcmSessionManager<V> where
    V: Sync

impl<V> Unpin for AesGcmSessionManager<V> where
    V: Unpin

impl<V> UnwindSafe for AesGcmSessionManager<V> where
    V: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<T> Typeable for T where
    T: Any

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,