-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needednew mechanismFeature request to add support for an additional mechanismFeature request to add support for an additional mechanism
Description
Since ScramServer
is a private struct, how do I add SCRAM-SHA512
and SCRAM-SHA512-PLUS
support?
Or, do you have any plan to add those support?
In the code, I see you have tried to add sha512 support but why comment it later?
#[cfg(feature = "scram-sha-1")]
pub type ScramSha1Server<const N: usize> = ScramServer<sha1::Sha1, N>;
#[cfg(feature = "scram-sha-2")]
pub type ScramSha256Server<const N: usize> = ScramServer<sha2::Sha256, N>;
// #[cfg(feature = "scram-sha-2")]
// pub type ScramSha512Server<const N: usize> = ScramServer<sha2::Sha512, N>;
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needednew mechanismFeature request to add support for an additional mechanismFeature request to add support for an additional mechanism