Trait rustls::StoresClientSessions [] [src]

pub trait StoresClientSessions: Send + Sync {
    fn put(&mut self, key: Vec<u8>, value: Vec<u8>) -> bool;
    fn get(&mut self, key: &[u8]) -> Option<Vec<u8>>;
}

A trait for the ability to store client session data. The keys and values are opaque.

Both the keys and values should be treated as highly sensitive data, containing enough key material to break all security of the corresponding session.

Required Methods

Stores a new value for key. Returns true if the value was stored.

Returns the latest value for key. Returns None if there's no such value.

Implementors