blob: 5a2b2082299b1e3ba5b1b0d3de66868cb8c9fcee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (c) 2011 Soren Dreijer
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <Swiften/TLS/CertificateFactory.h>
#include <Swiften/TLS/Schannel/SchannelCertificate.h>
namespace Swift {
class SchannelCertificateFactory : public CertificateFactory {
public:
virtual Certificate* createCertificateFromDER(const ByteArray& der) {
return new SchannelCertificate(der);
}
};
}
|