blob: aaf27d9060e843efc2334039593a0efc73dc9011 (
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
26
27
28
29
30
31
32
33
34
35
|
/*
* Copyright (c) 2010-2018 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/TLS/CertificateFactory.h>
#include <cassert>
#include <memory>
#include <sstream>
#include <string>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/optional.hpp>
#include <Swiften/Base/Log.h>
#include <Swiften/StringCodecs/Base64.h>
#include <Swiften/TLS/PrivateKey.h>
namespace Swift {
CertificateFactory::~CertificateFactory() {
}
std::vector<std::unique_ptr<Certificate>> CertificateFactory::createCertificateChain(const ByteArray& /* data */) {
assert(false);
return std::vector<std::unique_ptr<Certificate>>();
}
PrivateKey::ref CertificateFactory::createPrivateKey(const SafeByteArray& data, boost::optional<SafeByteArray> password) {
return std::make_shared<PrivateKey>(data, password);
}
}
|