Package org.bouncycastle.oer.its
Class SignedDataPayload
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.oer.its.SignedDataPayload
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class SignedDataPayload extends org.bouncycastle.asn1.ASN1Object
SignedDataPayload ::= SEQUENCE { data Ieee1609Dot2Data OPTIONAL, extDataHash HashedData OPTIONAL, ... }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SignedDataPayload.Builder
-
Constructor Summary
Constructors Constructor Description SignedDataPayload(Ieee1609Dot2Data data, HashedData extDataHash)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SignedDataPayload.Builder
builder()
Ieee1609Dot2Data
getData()
HashedData
getExtDataHash()
static SignedDataPayload
getInstance(java.lang.Object o)
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
-
-
-
Constructor Detail
-
SignedDataPayload
public SignedDataPayload(Ieee1609Dot2Data data, HashedData extDataHash)
-
-
Method Detail
-
getInstance
public static SignedDataPayload getInstance(java.lang.Object o)
-
builder
public static SignedDataPayload.Builder builder()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
-
getData
public Ieee1609Dot2Data getData()
-
getExtDataHash
public HashedData getExtDataHash()
-
-