|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.bouncycastle.asn1.ASN1Encodable
be.cardon.asn1.x509.extensions.PrivateKeyUsagePeriod
public class PrivateKeyUsagePeriod
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 |
---|
public static final org.bouncycastle.asn1.DERObjectIdentifier OID
PrivateKeyUsagePeriod
ASN.1 Object Identifier.
Constructor Detail |
---|
public PrivateKeyUsagePeriod(java.util.Date notBeforeDate, java.util.Date notAfterDate)
Date
objects.
public PrivateKeyUsagePeriod(org.bouncycastle.asn1.DERGeneralizedTime notBefore, org.bouncycastle.asn1.DERGeneralizedTime notAfter)
DERGeneralizedTime
objects.
public PrivateKeyUsagePeriod(org.bouncycastle.asn1.ASN1Sequence seq)
ASN1Sequence
.
Method Detail |
---|
public static PrivateKeyUsagePeriod getInstance(java.lang.Object obj)
ASN1Sequence
or
PrivateKeyUsagePeriod
object.
public org.bouncycastle.asn1.DERGeneralizedTime getNoteBefore()
notBefore
ASN.1 Object, or null
if absent.
public java.util.Date getNotBeforeDate() throws java.text.ParseException
notBefore Date
Object, or null
if absent.
java.text.ParseException
public org.bouncycastle.asn1.DERGeneralizedTime getNotAfter()
notAfter
ASN.1 Object or null
if absent.
public java.util.Date getNotAfterDate() throws java.text.ParseException
notAfter Date
Object , or null
if absent.
java.text.ParseException
public org.bouncycastle.asn1.DERObject toASN1Object()
toASN1Object
in class org.bouncycastle.asn1.ASN1Encodable
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |