1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-19 02:22:05 +01:00

Merge pull request #506 from Flowdalic/gssapi-no-password

Prevent password enforcement for SASL GSSAPI
This commit is contained in:
Florian Schmaus 2021-12-21 13:37:31 +01:00 committed by GitHub
commit 178e82a3aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,4 +66,8 @@ public class SASLGSSAPIMechanism extends SASLJavaXMechanism {
return new SASLGSSAPIMechanism();
}
@Override
public boolean requiresPassword() {
return false;
}
}