blob: 3ea469d5a76574164a707f1bfa68f4d2b8f5b9e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright (c) 2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <Swiften/TLS/CertificateFactory.h>
#include <Swiften/TLS/SecureTransport/SecureTransportCertificate.h>
namespace Swift {
class SecureTransportCertificateFactory : public CertificateFactory {
public:
virtual Certificate* createCertificateFromDER(const ByteArray& der) {
return new SecureTransportCertificate(der);
}
};
}
|