public class CK_DATE
extends java.lang.Object
implements java.lang.Cloneable
PKCS#11 structure:
typedef struct CK_DATE { CK_CHAR year[4]; CK_CHAR month[2]; CK_CHAR day[2]; } CK_DATE;
Modifier and Type | Field and Description |
---|---|
char[] |
day
PKCS#11:
CK_CHAR day[2]; - the day ("01" - "31")
|
char[] |
month
PKCS#11:
CK_CHAR month[2]; - the month ("01" - "12")
|
char[] |
year
PKCS#11:
CK_CHAR year[4]; - the year ("1900" - "9999")
|
Constructor and Description |
---|
CK_DATE() |
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 java.lang.Object clone()
clone
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object