PKCS#11 structure:
typedef struct CK_SLOT_INFO { CK_UTF8CHAR slotDescription[64]; CK_UTF8CHAR manufacturerID[32]; CK_FLAGS flags; CK_VERSION hardwareVersion; CK_VERSION firmwareVersion; } CK_SLOT_INFO;
Modifier and Type | Field and Description |
---|---|
public CK_VERSION | |
public long | |
public CK_VERSION | |
public char[] | manufacturerID
must be blank padded and only the first 32 chars will be used PKCS#11: CK_UTF8CHAR manufacturerID[32]; |
public char[] | slotDescription
must be blank padded and only the first 64 chars will be used PKCS#11: CK_UTF8CHAR slotDescription[64]; |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public String | Returns: the string representation of CK_SLOT_INFOOverrides java. Returns the string representation of CK_SLOT_INFO. |
firmwareVersion | back to summary |
---|---|
public CK_VERSION firmwareVersion version of firmware PKCS#11: CK_VERSION firmwareVersion; |
flags | back to summary |
---|---|
public long flags PKCS#11: CK_FLAGS flags; |
hardwareVersion | back to summary |
---|---|
public CK_VERSION hardwareVersion version of hardware PKCS#11: CK_VERSION hardwareVersion; |
manufacturerID | back to summary |
---|---|
public char[] manufacturerID must be blank padded and only the first 32 chars will be used PKCS#11: CK_UTF8CHAR manufacturerID[32]; |
slotDescription | back to summary |
---|---|
public char[] slotDescription must be blank padded and only the first 64 chars will be used PKCS#11: CK_UTF8CHAR slotDescription[64]; |
CK_SLOT_INFO | back to summary |
---|---|
public CK_SLOT_INFO(char[] slotDesc, char[] vendor, long flags, CK_VERSION hwVer, CK_VERSION fwVer) |
toString | back to summary |
---|---|
public String toString() Overrides java. Returns the string representation of CK_SLOT_INFO.
|