How to get CKA_ID from public/private Key pair of USB Token?
I have a USB token contain certificate, public/private key pair, how can i get
#define CKA_ID
Key identifier for public/private key pair (default empty).
From PKCS 1开发者_开发知识库1 document using C++?
- First find the certificate with
CKO_CERTIFICATE
. (C_FindObjectsInit, C_FindObjects, C_FindObjectsFinal
)
2.Get the CKA_ID using C_GetAttributeValue
精彩评论