org.bouncycastle.oer.its.template.ieee1609dot2dot1.Ieee1609Dot2Dot1EcaEeInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15to18 Show documentation
Show all versions of bcutil-jdk15to18 Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 to JDK 1.8.
package org.bouncycastle.oer.its.template.ieee1609dot2dot1;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.oer.OERDefinition;
import org.bouncycastle.oer.its.template.ieee1609dot2.IEEE1609dot2;
import org.bouncycastle.oer.its.template.ieee1609dot2.basetypes.Ieee1609Dot2BaseTypes;
public class Ieee1609Dot2Dot1EcaEeInterface
{
/**
* EeEcaCertRequest ::= SEQUENCE {
* version Uint8 (2),
* generationTime Time32,
* type CertificateType,
* tbsCert ToBeSignedCertificate (WITH COMPONENTS {
* ...,
* id (WITH COMPONENTS {
* ...,
* linkageData ABSENT
* }),
* cracaId ('000000'H),
* crlSeries (0),
* appPermissions ABSENT,
* certIssuePermissions ABSENT,
* certRequestPermissions PRESENT,
* verifyKeyIndicator (WITH COMPONENTS {
* verificationKey
* })
* }),
* canonicalId IA5String OPTIONAL,
* ...
* }
*/
public static final OERDefinition.Builder EeEcaCertRequest = OERDefinition.seq(
Ieee1609Dot2BaseTypes.UINT8.label("version").validSwitchValue(new ASN1Integer(2)),
Ieee1609Dot2BaseTypes.Time32.label("generationTime"),
IEEE1609dot2.CertificateType.label("type"),
IEEE1609dot2.ToBeSignedCertificate.label("tbsCert"),
OERDefinition.optional(OERDefinition.ia5String().label("canonicalId")),
OERDefinition.extension()
).typeName("EeEcaCertRequest");
}