diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-19 19:25:56 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-19 19:25:56 (GMT) |
commit | e9bdc38536488b76e5e3a715961a94085302cc15 (patch) | |
tree | 57dd253c436a3419152e568be902dab5ad99fc51 /Swiften/Base | |
parent | b2a55163964c835a4b0b61af0f0d959ec58a5a0e (diff) | |
download | swift-e9bdc38536488b76e5e3a715961a94085302cc15.zip swift-e9bdc38536488b76e5e3a715961a94085302cc15.tar.bz2 |
Added HMAC-SHA1 and SCRAM-SHA1 implementations.
We don't authenticate with SCRAM-SHA1 yet.
Diffstat (limited to 'Swiften/Base')
-rw-r--r-- | Swiften/Base/ByteArray.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Swiften/Base/ByteArray.h b/Swiften/Base/ByteArray.h index ea96d09..ab256a4 100644 --- a/Swiften/Base/ByteArray.h +++ b/Swiften/Base/ByteArray.h @@ -56,6 +56,13 @@ namespace Swift { return result; } + friend ByteArray operator+(const ByteArray& a, char b) { + ByteArray x; + x.resize(1); + x[0] = b; + return a + x; + } + ByteArray& operator+=(const ByteArray& b) { data_.insert(data_.end(), b.data_.begin(), b.data_.end()); return *this; |