blob: 79ba9b37949f17c6c4ec0969eda655fcbd31e570 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <Swiften/Component/ComponentHandshakeGenerator.h>
#include <Swiften/StringCodecs/Hexify.h>
#include <Swiften/StringCodecs/SHA1.h>
#include <Swiften/Base/String.h>
namespace Swift {
std::string ComponentHandshakeGenerator::getHandshake(const std::string& streamID, const std::string& secret) {
std::string concatenatedString = streamID + secret;
String::replaceAll(concatenatedString, '&', "&");
String::replaceAll(concatenatedString, '<', "<");
String::replaceAll(concatenatedString, '>', ">");
String::replaceAll(concatenatedString, '\'', "'");
String::replaceAll(concatenatedString, '"', """);
return Hexify::hexify(SHA1::getHash(createByteArray(concatenatedString)));
}
}
|