AusweisApp
Lade ...
Suche ...
Keine Treffer
IfdEstablishPaceChannel.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include "IfdMessage.h"
9
10
11namespace governikus
12{
13
15 : public IfdMessage
16{
17 private:
18 QString mSlotHandle;
19 EstablishPaceChannel mInputData;
20 int mExpectedPinLength;
21
22 void parseInputData(const QJsonObject& pMessageObject);
23
24 public:
27 ~IfdEstablishPaceChannel() override = default;
28
29 [[nodiscard]] const QString& getSlotHandle() const;
31 [[nodiscard]] int getExpectedPinLength() const;
33};
34
35
36} // namespace governikus
Definition EstablishPaceChannel.h:45
Definition IfdEstablishPaceChannel.h:16
~IfdEstablishPaceChannel() override=default
const QString & getSlotHandle() const
Definition IfdEstablishPaceChannel.cpp:89
QByteArray toByteArray(IfdVersion::Version pIfdVersion, const QString &pContextHandle) const override
Definition IfdEstablishPaceChannel.cpp:107
int getExpectedPinLength() const
Definition IfdEstablishPaceChannel.cpp:101
IfdEstablishPaceChannel(const QString &pSlotHandle, const EstablishPaceChannel &pInputData, int pExpectedPinLength)
Definition IfdEstablishPaceChannel.cpp:61
const EstablishPaceChannel & getInputData() const
Definition IfdEstablishPaceChannel.cpp:95
Version
Definition IfdVersion.h:17
Implementation of GeneralAuthenticate response APDUs.
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:114