Struct scram_tmp::server::ScramServer[][src]

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]

Creates a new ScramServer using the given authentication provider.

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> Send for ScramServer<P> where
    P: Send

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