AusweisApp
Lade ...
Suche ...
Keine Treffer
LocalTlsServer.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include "TlsServer.h"
8
9
10namespace governikus
11{
12
14 : public TlsServer
15{
17
18 private:
19 QSslConfiguration sslConfiguration() const override;
20
21 public:
22 LocalTlsServer() = default;
23 bool startListening(quint16 pPort) override;
24
25 private Q_SLOTS:
26 void onSslErrors(const QList<QSslError>& pErrors) override;
27 void onEncrypted() override;
28};
29
30} // namespace governikus
Definition LocalTlsServer.h:15
bool startListening(quint16 pPort) override
Definition LocalTlsServer.cpp:19
Definition TlsServer.h:20
Defines the AccessRight and AccessRole enum.
Definition CommandApdu.h:17
QSharedPointer< T > decodeObject(const QByteArray &pData, bool pLogging=true)
Template function for decoding an OpenSSL type from DER encoded QByteArray.
Definition ASN1TemplateUtil.h:112