pub struct Scram<S: ScramProvider> { /* private fields */ }
scram
only.Expand description
A struct for the SASL SCRAM-* and SCRAM-*-PLUS mechanisms.
Implementations§
Source§impl<S: ScramProvider> Scram<S>
impl<S: ScramProvider> Scram<S>
Sourcepub fn new<N: Into<String>, P: Into<Password>>(
username: N,
password: P,
channel_binding: ChannelBinding,
) -> Result<Scram<S>, Error>
pub fn new<N: Into<String>, P: Into<Password>>( username: N, password: P, channel_binding: ChannelBinding, ) -> Result<Scram<S>, Error>
Constructs a new struct for authenticating using the SASL SCRAM-* and SCRAM-*-PLUS mechanisms, depending on the passed channel binding.
It is recommended that instead you use a Credentials
struct and turn it into the
requested mechanism using from_credentials
.
Sourcepub fn with_first_extensions(self, extensions: String) -> Self
pub fn with_first_extensions(self, extensions: String) -> Self
Sets extension data to be inserted into the client’s first message.
Extension data must be in the format of a comma separated list of SCRAM extensions to be used e.g. foo=true,bar=baz
If not called, no extensions will be used for the clients first message.
Sourcepub fn with_final_extensions(self, extensions: String) -> Self
pub fn with_final_extensions(self, extensions: String) -> Self
Sets extension data to be inserted into the client’s final message.
Extension data must be in the format of a comma separated list of SCRAM extensions to be used e.g. foo=true,bar=baz
If not called, no extensions will be used for the clients final message.
Trait Implementations§
Source§impl<S: ScramProvider> Mechanism for Scram<S>
impl<S: ScramProvider> Mechanism for Scram<S>
Source§fn from_credentials(
credentials: Credentials,
) -> Result<Scram<S>, MechanismError>
fn from_credentials( credentials: Credentials, ) -> Result<Scram<S>, MechanismError>
Credentials
.