GUACAMOLE-1391: Fixed typo when trying to reference the SHA_256 enum value.

This commit is contained in:
Bitson
2021-07-29 19:48:13 -05:00
parent 234f2cc26f
commit acc8f816ce

View File

@@ -75,7 +75,7 @@ public class AuthorizeTagHandler implements TagHandler {
// If "sha256" use SHA-256 hash
else if (encoding.equals("sha256"))
authorization.setEncoding(Authorization.Encoding.SHA_S56);
authorization.setEncoding(Authorization.Encoding.SHA_256);
// If "plain", use plain text
else if (encoding.equals("plain"))