AusweisApp
Lade ...
Suche ...
Keine Treffer
LocalTlsServer.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include "TlsServer.h"
12
13
14namespace governikus
15{
16
18 : public TlsServer
19{
20 Q_OBJECT
21
22 private:
23 QSslConfiguration sslConfiguration() const override;
24
25 public:
26 LocalTlsServer() = default;
27 bool startListening(quint16 pPort) override;
28
29 private Q_SLOTS:
30 void onSslErrors(const QList<QSslError>& pErrors) override;
31 void onEncrypted() override;
32};
33
34} // namespace governikus
Definition: LocalTlsServer.h:19
bool startListening(quint16 pPort) override
Definition: LocalTlsServer.cpp:19
Definition: TlsServer.h:24
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16