In my log I have this stackTrace:
15/03/2017 07.56.17: Errore Cryptware.NCryptoki.CryptokiException: Error n. -2147483389
in Cryptware.NCryptoki.Cryptoki.get_Info()
in .../stuff/file.cs:riga 1374
And, in the row 1374 I have this:
CryptokiInfo info = cryptoki.Info;
If I remove this row, the program runs until it reaches this:
SlotList slots = cryptoki.Slots;
if (slots.Count == 0)
{
Utility.Logger("No slot available");
return null;
}
and it can't find any slots.
Do you know what is wrong here?