Class CK_ATTRIBUTE


  • public class CK_ATTRIBUTE
    extends java.lang.Object
    class CK_ATTRIBUTE includes the type, value and length of an attribute.

    PKCS#11 structure:

     typedef struct CK_ATTRIBUTE {
       CK_ATTRIBUTE_TYPE  type;
       CK_VOID_PTR        pValue;
       CK_ULONG           sulValueLen;
     } CK_ATTRIBUTE;
     
    Author:
    Karl Scheibelhofer (SIC), Martin Schläffer (SIC)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.Object pValue
      PKCS#11:
      long type
      PKCS#11:
    • Constructor Summary

      Constructors 
      Constructor Description
      CK_ATTRIBUTE()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • type

        public long type
        PKCS#11:
         CK_ATTRIBUTE_TYPE type;
         
      • pValue

        public java.lang.Object pValue
        PKCS#11:
         CK_VOID_PTR pValue;
         CK_ULONG ulValueLen;
         
    • Constructor Detail

      • CK_ATTRIBUTE

        public CK_ATTRIBUTE()