Package iaik.pkcs.pkcs11.wrapper
Class CK_SLOT_INFO
- java.lang.Object
-
- iaik.pkcs.pkcs11.wrapper.CK_SLOT_INFO
-
public class CK_SLOT_INFO extends Object
class CK_SLOT_INFO provides information about a slot.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;- Author:
- Karl Scheibelhofer (SIC), Martin Schläffer (SIC)
-
-
Field Summary
Fields Modifier and Type Field Description CK_VERSIONfirmwareVersionPKCS#11:longflagsPKCS#11:CK_VERSIONhardwareVersionPKCS#11:char[]manufacturerIDmust be blank padded and only the first 32 chars will be usedchar[]slotDescriptionmust be blank padded and only the first 64 chars will be used
-
Constructor Summary
Constructors Constructor Description CK_SLOT_INFO()
-
-
-
Field Detail
-
slotDescription
public char[] slotDescription
must be blank padded and only the first 64 chars will be usedPKCS#11:
CK_UTF8CHAR slotDescription[64];
-
manufacturerID
public char[] manufacturerID
must be blank padded and only the first 32 chars will be usedPKCS#11:
CK_UTF8CHAR manufacturerID[32];
-
flags
public long flags
PKCS#11:CK_FLAGS flags;
-
hardwareVersion
public CK_VERSION hardwareVersion
PKCS#11:CK_VERSION hardwareVersion;
-
firmwareVersion
public CK_VERSION firmwareVersion
PKCS#11:CK_VERSION firmwareVersion;
-
-