1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-25 04:44:49 +02:00
Smack/smack-core/src/main/java/org/jivesoftware/smack/sasl/core
Florian Schmaus fca2f59e08 Fix SCRAM-SHA1 mechanism creating invalid c-nonce
Because of the condition "c >= 32", Smack would possible return a
c-nonce containing ASCII whitespace characters (32d, 0x20), which are
not allowed in the c-nonce as per RFC 5802.

This commit applies the correct condition: "c > 32".

Fixes SMACK-735.
2016-10-20 17:00:52 +02:00
..
SASLXOauth2Mechanism.java Do not base64 twice in SASL X-OAUTH2 2016-07-04 08:25:01 +02:00
SCRAMSHA1Mechanism.java Fix SCRAM-SHA1 mechanism creating invalid c-nonce 2016-10-20 17:00:52 +02:00