Class CK_DATE


  • public class CK_DATE
    extends java.lang.Object
    class .

    PKCS#11 structure:

     typedef struct CK_DATE {
       CK_CHAR  year[4];
       CK_CHAR  month[2];
       CK_CHAR  day[2];
     } CK_DATE;
     
    Author:
    Karl Scheibelhofer (SIC), Martin Schläffer (SIC)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      char[] day
      PKCS#11:
      char[] month
      PKCS#11:
      char[] year
      PKCS#11:
    • Constructor Summary

      Constructors 
      Constructor Description
      CK_DATE()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • year

        public char[] year
        PKCS#11:
           CK_CHAR year[4];   - the year ("1900" - "9999")
         
      • month

        public char[] month
        PKCS#11:
           CK_CHAR month[2];  - the month ("01" - "12")
         
      • day

        public char[] day
        PKCS#11:
           CK_CHAR day[2];    - the day ("01" - "31")
         
    • Constructor Detail

      • CK_DATE

        public CK_DATE()