be.cardon.asn1.x509.extensions
Class PrivateKeyUsagePeriod

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by be.cardon.asn1.x509.extensions.PrivateKeyUsagePeriod
All Implemented Interfaces:
org.bouncycastle.asn1.DEREncodable

public class PrivateKeyUsagePeriod
extends org.bouncycastle.asn1.ASN1Encodable

Extension PrivateKeyUsagePeriod.

Documentation from RFC 3280:

This extension SHOULD NOT be used within the Internet PKI. CAs conforming to this profile MUST NOT generate certificates that include a critical private key usage period extension.

The private key usage period extension allows the certificate issuer to specify a different validity period for the private key than the certificate. This extension is intended for use with digital signature keys. This extension consists of two optional components, notBefore and notAfter. The private key associated with the certificate SHOULD NOT be used to sign objects before or after the times specified by the two components, respectively. CAs conforming to this profile MUST NOT generate certificates with private key usage period extensions unless at least one of the two components is present and the extension is non-critical.

Where used, notBefore and notAfter are represented as GeneralizedTime and MUST be specified and interpreted as defined in section 4.1.2.5.2.

ASN.1 definitions:

   id-ce-privateKeyUsagePeriod OBJECT IDENTIFIER ::=  { id-ce 16 }

   PrivateKeyUsagePeriod ::= SEQUENCE {
        notBefore       [0]     GeneralizedTime OPTIONAL,
        notAfter        [1]     GeneralizedTime OPTIONAL }
   


Field Summary
static org.bouncycastle.asn1.DERObjectIdentifier OID
          PrivateKeyUsagePeriod ASN.1 Object Identifier.
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
PrivateKeyUsagePeriod(org.bouncycastle.asn1.ASN1Sequence seq)
          Creates a new instance from an ASN1Sequence.
PrivateKeyUsagePeriod(java.util.Date notBeforeDate, java.util.Date notAfterDate)
          Creates a new instance with Date objects.
PrivateKeyUsagePeriod(org.bouncycastle.asn1.DERGeneralizedTime notBefore, org.bouncycastle.asn1.DERGeneralizedTime notAfter)
          Creates a new instance with ASN.1 DERGeneralizedTime objects.
 
Method Summary
static PrivateKeyUsagePeriod getInstance(java.lang.Object obj)
          Creates a new instance from an ASN1Sequence or PrivateKeyUsagePeriod object.
 org.bouncycastle.asn1.DERGeneralizedTime getNotAfter()
          Returns notAfter ASN.1 Object or null if absent.
 java.util.Date getNotAfterDate()
          Returns notAfter Date Object , or null if absent.
 java.util.Date getNotBeforeDate()
          Returns notBefore Date Object, or null if absent.
 org.bouncycastle.asn1.DERGeneralizedTime getNoteBefore()
          Returns notBefore ASN.1 Object, or null if absent.
 org.bouncycastle.asn1.DERObject toASN1Object()
           
 java.lang.String toString()
          Returns a description of the value.
 
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

OID

public static final org.bouncycastle.asn1.DERObjectIdentifier OID
PrivateKeyUsagePeriod ASN.1 Object Identifier.

Constructor Detail

PrivateKeyUsagePeriod

public PrivateKeyUsagePeriod(java.util.Date notBeforeDate,
                             java.util.Date notAfterDate)
Creates a new instance with Date objects.


PrivateKeyUsagePeriod

public PrivateKeyUsagePeriod(org.bouncycastle.asn1.DERGeneralizedTime notBefore,
                             org.bouncycastle.asn1.DERGeneralizedTime notAfter)
Creates a new instance with ASN.1 DERGeneralizedTime objects.


PrivateKeyUsagePeriod

public PrivateKeyUsagePeriod(org.bouncycastle.asn1.ASN1Sequence seq)
Creates a new instance from an ASN1Sequence.

Method Detail

getInstance

public static PrivateKeyUsagePeriod getInstance(java.lang.Object obj)
Creates a new instance from an ASN1Sequence or PrivateKeyUsagePeriod object.


getNoteBefore

public org.bouncycastle.asn1.DERGeneralizedTime getNoteBefore()
Returns notBefore ASN.1 Object, or null if absent.


getNotBeforeDate

public java.util.Date getNotBeforeDate()
                                throws java.text.ParseException
Returns notBefore Date Object, or null if absent.

Throws:
java.text.ParseException

getNotAfter

public org.bouncycastle.asn1.DERGeneralizedTime getNotAfter()
Returns notAfter ASN.1 Object or null if absent.


getNotAfterDate

public java.util.Date getNotAfterDate()
                               throws java.text.ParseException
Returns notAfter Date Object , or null if absent.

Throws:
java.text.ParseException

toASN1Object

public org.bouncycastle.asn1.DERObject toASN1Object()
Specified by:
toASN1Object in class org.bouncycastle.asn1.ASN1Encodable

toString

public java.lang.String toString()
Returns a description of the value.

Overrides:
toString in class java.lang.Object