sasl: Add the -PLUS versions of both SCRAM mechanisms.

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-03 00:05:28 +02:00
parent 92cdaaafcc
commit 83c0e9113c

View file

@ -9,7 +9,9 @@ use helpers::{Base64, TrimmedPlainText};
generate_attribute!(Mechanism, "mechanism", {
Plain => "PLAIN",
ScramSha1 => "SCRAM-SHA-1",
ScramSha1Plus => "SCRAM-SHA-1-PLUS",
ScramSha256 => "SCRAM-SHA-256",
ScramSha256Plus => "SCRAM-SHA-256-PLUS",
Anonymous => "ANONYMOUS",
});