public class CK_DATE extends Object
PKCS#11 structure:
typedef struct CK_DATE { CK_CHAR year[4]; CK_CHAR month[2]; CK_CHAR day[2]; } CK_DATE;
char[]
day
month
year
CK_DATE()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public char[] year
CK_CHAR year[4]; - the year ("1900" - "9999")
public char[] month
CK_CHAR month[2]; - the month ("01" - "12")
public char[] day
CK_CHAR day[2]; - the day ("01" - "31")
public CK_DATE()
Copyright © 2023. All rights reserved.