This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have been trying to decrypt a file with a smart card but I get weird message. I am using PKCS11Interop to invoke C_Decrypt in the dll file that uses pkcs11.h to communicate with smart cards. This is the code: public byte[] Decrypt(byte[] encData) { byte[] decrypt = null; using [...] read more