blob: 647b3da96731ef1adfd5b0696801e28068d46b23 (
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
25
 | /*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
#include <Swiften/Component/ComponentHandshakeGenerator.h>
#include <Swiften/Base/String.h>
#include <Swiften/Crypto/CryptoProvider.h>
#include <Swiften/StringCodecs/Hexify.h>
namespace Swift {
std::string ComponentHandshakeGenerator::getHandshake(const std::string& streamID, const std::string& secret, CryptoProvider* crypto) {
    std::string concatenatedString = streamID + secret;
    String::replaceAll(concatenatedString, '&', "&");
    String::replaceAll(concatenatedString, '<', "<");
    String::replaceAll(concatenatedString, '>', ">");
    String::replaceAll(concatenatedString, '\'', "'");
    String::replaceAll(concatenatedString, '"', """);
    return Hexify::hexify(crypto->getSHA1Hash(createByteArray(concatenatedString)));
}
}
 |