[][src]Struct scram::server::ScramServer

pub struct ScramServer<P: AuthenticationProvider> { /* fields omitted */ }

Responds to client authentication challenges. It's the entrypoint for the SCRAM server side implementation.

Methods

impl<P: AuthenticationProvider> ScramServer<P>[src]

pub fn new(provider: P) -> Self[src]

Creates a new ScramServer using the given authentication provider.

pub fn handle_client_first<'a>(
    &'a self,
    client_first: &'a str
) -> Result<ServerFirst<'a, P>, Error>
[src]

Handle a challenge message sent by the client to the server. If the message is well formed, and the requested user exists, then this will progress to the next stage of the authentication process, ServerFirst. Otherwise, it will return an error.

Auto Trait Implementations

impl<P> RefUnwindSafe for ScramServer<P> where
    P: RefUnwindSafe

impl<P> Send for ScramServer<P> where
    P: Send

impl<P> Sync for ScramServer<P> where
    P: Sync

impl<P> Unpin for ScramServer<P> where
    P: Unpin

impl<P> UnwindSafe for ScramServer<P> where
    P: 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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,