//Thanks for reading
DISCLAIMER.txt
/*
This samples demonstrates the following :-
- How to load a softhsm pkcs#11 library.
- How to connect to a token using C_Initialize, C_OpenSession, and C_Login.
- How to disconnect from a token using C_Logout, C_CloseSession, and C_Finalize.
Compile this code as follows :-
THIS SAMPLE SHOULD WORK ON WINDOWS AND UNIX/LINUX
On Windows
g++ all_platform.cpp -o all_platform -I../include
On Linux/Unix/MacOS
g++ all_platform.cpp -o all_platform -I../include -DNIX
*/
#include <iostream>
#include <cryptoki.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
// OS Check
#ifdef NIX
#include // For Unix/Linux OS
#else
#include // For Windows OS
#endif
// OS Check
#ifdef NIX
void *libHandle = 0;
#else
HINSTANCE libHandle = 0;
#endif
CK_FUNCTION_LIST *p11Func = NULL; // Maintains the list of all obtained PKCS#11 functions.
CK_SLOT_ID slotId; // Stores the slot ID.
CK_SESSION_HANDLE hSession; // Stores the session handle.
CK_BYTE *slotPin = NULL; // Stores the slot pin.
const char *libPath = NULL; // Stores the library path.
// This function loads a pkcs11 library. Path of the pkcs11 library is read using P11_LIB environment variable.
void loadHSMLibrary()
{
libPath = getenv("P11_LIB"); // Read P11_LIB environment variable.
if(libPath==NULL)
{
cout << "P11_LIB environment variable not set." << endl;
exit(1);
}
// OS Check
#ifdef NIX
libHandle = dlopen(libPath, RTLD_NOW); // Load library for Unix/Linux
#else
libHandle = LoadLibrary(libPath); // Load Library for Windows.
#endif
if(!libHandle)
{
cout << "Failed to load P11 library. " << libPath << endl;
exit(1);
}
// OS Check
#ifdef NIX
CK_C_GetFunctionList C_GetFunctionList = (CK_C_GetFunctionList)dlsym(libHandle,"C_GetFunctionList"); // Obtain function list on Unix/Linux OS.
#else
CK_C_GetFunctionList C_GetFunctionList = (CK_C_GetFunctionList)GetProcAddress(libHandle,"C_GetFunctionList"); // Obtain function on Windows.
#endif
C_GetFunctionList(&p11Func);
if(!p11Func)
{
cout << "Failed to load P11 Functions." << endl;
exit(1);
}
}
// Before exiting, this functions performs some memory cleanup.
void freeResource()
{
#ifdef NIX
dlclose(libHandle);
#else
FreeLibrary(libHandle);
#endif
p11Func = NULL;
slotPin = NULL;
}
// This function checks if a requested PKCS #11 operation was a success or a failure.
void checkOperation(CK_RV rv, const char *message)
{
if(rv!=CKR_OK)
{
cout << message << " failed with : " << rv << endl;
printf("RV : %#08lx", rv);
freeResource();
exit(1);
}
}
// This function connects this sample to a slot. It initializes the library, opens a new session and performs login.
void connectToSlot()
{
checkOperation(p11Func->C_Initialize(NULL_PTR),"C_Initialize");
checkOperation(p11Func->C_OpenSession(slotId, CKF_SERIAL_SESSION | CKF_RW_SESSION, NULL_PTR, NULL_PTR, &hSession),"C_OpenSession");
checkOperation(p11Func->C_Login(hSession, CKU_USER, slotPin, strlen((const char*)slotPin)),"C_Login");
}
// This function disconnects this sample from a slot. It first logs out of the slot, closes the session and then finalizes the library.
void disconnectFromSlot()
{
checkOperation(p11Func->C_Logout(hSession),"C_Logout");
checkOperation(p11Func->C_CloseSession(hSession),"C_CloseSesion");
checkOperation(p11Func->C_Finalize(NULL_PTR),"C_Finalize");
}
// This function shows the usage of the executable.
void usage(char exeName[30])
{
cout << "Command usage is :-" << endl;
cout << exeName << " " << "" << endl;
exit(0);
}
int main(int argc, char **argv)
{
if(argc!=3)
usage(argv[0]);
else
{
slotId = atoi(argv[1]);
slotPin = new CK_BYTE[strlen(argv[2])];
slotPin = (CK_BYTE_PTR)argv[2];
}
loadHSMLibrary();
cout << "P11 library loaded." << endl;
connectToSlot();
cout << "Connected via session : " << hSession << endl;
disconnectFromSlot();
cout << "Disconnected from slot." << endl;
freeResource();
return 0;
}