public class

CK_DATE

extends Object
implements Cloneable
java.lang.Object
   ↳ sun.security.pkcs11.wrapper.CK_DATE

Class Overview

class .

PKCS#11 structure:

 typedef struct CK_DATE {  
   CK_CHAR year[4];  
   CK_CHAR month[2];  
   CK_CHAR day[2];  
 } CK_DATE;
 

Summary

Fields
public char[] day PKCS#11:
   CK_CHAR day[2];    - the day ("01" - "31")
 
public char[] month PKCS#11:
   CK_CHAR month[2];  - the month ("01" - "12")
 
public char[] year PKCS#11:
   CK_CHAR year[4];   - the year ("1900" - "9999")
 
Public Constructors
CK_DATE(char[] year, char[] month, char[] day)
Public Methods
Object clone()
Create a (deep) clone of this object.
String toString()
Returns the string representation of CK_DATE.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public char[] day

PKCS#11:

   CK_CHAR day[2];    - the day ("01" - "31")
 

public char[] month

PKCS#11:

   CK_CHAR month[2];  - the month ("01" - "12")
 

public char[] year

PKCS#11:

   CK_CHAR year[4];   - the year ("1900" - "9999")
 

Public Constructors

public CK_DATE (char[] year, char[] month, char[] day)

Public Methods

public Object clone ()

Create a (deep) clone of this object.

Returns
  • A clone of this object.

public String toString ()

Returns the string representation of CK_DATE.

Returns
  • the string representation of CK_DATE