Class 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 Detail

      • slotDescription

        public char[] slotDescription
        must be blank padded and only the first 64 chars will be used

        PKCS#11:

           CK_UTF8CHAR slotDescription[64];
         
      • manufacturerID

        public char[] manufacturerID
        must be blank padded and only the first 32 chars will be used

        PKCS#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;
         
    • Constructor Detail

      • CK_SLOT_INFO

        public CK_SLOT_INFO()