Is it possible to save a value in a security token memory by using PyKCS11 and M2Crypto?
I need to save an integer to token memory, so that the value can be carried out with the token
I know how to create objects, but is it possible to create attributes in a token, so whenever I read that attribute I will know the status of that token.
using PKCS#11, the only way to store 'home made' data, it through the use of a CKO_DATA object type. Like any object, it can be persistent on the token (not lost when the token is powered off) or it can be a memory object (lost when the session to the token is closed).
To create a CKO_DATA object is similar to any other object creation:
HTH,