Class CK_DATE


  • public class CK_DATE
    extends 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 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()