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 |
---|---|
public char[] | |
public char[] | |
public char[] |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public Object | Returns: A clone of this object.Overrides java. Create a (deep) clone of this object. |
public String | Returns: the string representation of CK_DATEOverrides java. Returns the string representation of CK_DATE. |
day | back to summary |
---|---|
public char[] day PKCS#11: CK_CHAR day[2]; - the day ("01" - "31") |
month | back to summary |
---|---|
public char[] month PKCS#11: CK_CHAR month[2]; - the month ("01" - "12") |
year | back to summary |
---|---|
public char[] year PKCS#11: CK_CHAR year[4]; - the year ("1900" - "9999") |
CK_DATE | back to summary |
---|---|
public CK_DATE(char[] year, char[] month, char[] day) |
clone | back to summary |
---|---|
public Object clone() Overrides java. Create a (deep) clone of this object.
|
toString | back to summary |
---|---|
public String toString() Overrides java. Returns the string representation of CK_DATE.
|