Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 335 Bytes

File metadata and controls

16 lines (13 loc) · 335 Bytes

SmartCardReader

PKCS #11 Library

You have to provide the full path to your PKCS #11 library in the PKCS11Wrapper.cpp file

BOOL CPKCS11Wrapper::initialize()
{
#ifdef _WIN64
	loadPKCS11Library(_T("C:\\Windows\\System32\\cardos11_64.dll"));
#else
	loadPKCS11Library(_T("C:\\Windows\\System32\\cardos11.dll"));
#endif

...

}