Bouncy Castle Cryptography Library 1.49

org.bouncycastle.asn1.cms
Class Time

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Object
      extended by org.bouncycastle.asn1.cms.Time
All Implemented Interfaces:
ASN1Choice, ASN1Encodable

public class Time
extends ASN1Object
implements ASN1Choice


Constructor Summary
Time(ASN1Primitive time)
           
Time(java.util.Date date)
          creates a time object from a given date - if the date is between 1950 and 2049 a UTCTime object is generated, otherwise a GeneralizedTime is used.
 
Method Summary
 java.util.Date getDate()
           
static Time getInstance(ASN1TaggedObject obj, boolean explicit)
           
static Time getInstance(java.lang.Object obj)
           
 java.lang.String getTime()
           
 ASN1Primitive toASN1Primitive()
          Produce an object suitable for an ASN1OutputStream.
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Time

public Time(ASN1Primitive time)

Time

public Time(java.util.Date date)
creates a time object from a given date - if the date is between 1950 and 2049 a UTCTime object is generated, otherwise a GeneralizedTime is used.

Method Detail

getInstance

public static Time getInstance(ASN1TaggedObject obj,
                               boolean explicit)

getInstance

public static Time getInstance(java.lang.Object obj)

getTime

public java.lang.String getTime()

getDate

public java.util.Date getDate()

toASN1Primitive

public ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.
 Time ::= CHOICE {
             utcTime        UTCTime,
             generalTime    GeneralizedTime }
 

Specified by:
toASN1Primitive in interface ASN1Encodable
Specified by:
toASN1Primitive in class ASN1Object

Bouncy Castle Cryptography Library 1.49