summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-03-04 11:58:25 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-03-04 11:58:25 (GMT)
commit5d9a6702c244eb4ab30ce96465d9deceedfe955a (patch)
tree2f4d7072b62ccbb022355063c8b2d97279b77a7c /Swiften/SASL/SCRAMSHA1ClientAuthenticator.h
parent638f58763bcba6b87fec2ce50bc2cffd4ab015cb (diff)
downloadswift-5d9a6702c244eb4ab30ce96465d9deceedfe955a.zip
swift-5d9a6702c244eb4ab30ce96465d9deceedfe955a.tar.bz2
Fix problem with SCRAM-SHA1 final message in <challenge/>.
Diffstat (limited to 'Swiften/SASL/SCRAMSHA1ClientAuthenticator.h')
-rw-r--r--Swiften/SASL/SCRAMSHA1ClientAuthenticator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h
index 6636139..3d28014 100644
--- a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h
+++ b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h
@@ -23,7 +23,8 @@ namespace Swift {
private:
enum Step {
Initial,
- Proof
+ Proof,
+ Final
} step;
String clientnonce;
ByteArray initialServerMessage;