1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

EMV keyfile support: Overall code improvements and bug fixes

This commit is contained in:
Mounir IDRASSI
2023-06-29 00:06:20 +02:00
parent 502ab9112a
commit 034b64f415
81 changed files with 4654 additions and 1574 deletions

62
src/Common/SCard.cpp Normal file
View File

@@ -0,0 +1,62 @@
#include "SCard.h"
using namespace std;
namespace VeraCrypt
{
SCardManager SCard::manager;
SCard::SCard() : m_reader(NULL)
{
}
SCard::SCard(size_t slotId)
{
m_reader = SCard::manager.GetReader(slotId);
}
SCard::~SCard()
{
if (m_reader)
{
m_reader->Disconnect();
}
}
SCard::SCard(const SCard& other) : m_reader(other.m_reader)
{
}
SCard::SCard(SCard&& other) : m_reader(std::move(other.m_reader))
{
}
SCard& SCard::operator = (const SCard& other)
{
if (this != &other)
{
m_reader = other.m_reader;
}
return *this;
}
SCard& SCard::operator = (SCard&& other)
{
if (this != &other)
{
m_reader = std::move(other.m_reader);
}
return *this;
}
bool SCard::IsCardHandleValid() const
{
bool isValid = false;
if (m_reader)
{
isValid = m_reader->CardHandleStatus() == SCARD_S_SUCCESS;
}
return isValid;
}
}