EndrII bbb423a26b
All checks were successful
buildbot/IOSCMakeBuilder Build finished.
update copyright
2022-12-31 11:25:59 +03:00

32 lines
630 B
C++

//#
//# Copyright (C) 2021-2023 QuasarApp.
//# Distributed under the GPLv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#ifndef AUTHECDSA_H
#define AUTHECDSA_H
#include "heart_global.h"
#ifdef USE_HEART_SSL
#include "hcrypto/ecdsassl11.h"
#include "asynckeysauth.h"
namespace QH {
/**
* @brief The AuthECDSA class is ecdsa implementation of the Async authentication. This implementation based on Openssl library.
*/
typedef AsyncKeysAuth<ECDSASSL11> AuthECDSA;
}
#endif
#endif // AUTHECDSA_H