public enum PKIEncodingType extends java.lang.Enum<PKIEncodingType>
Denotes URI identifying the encoding used in the original PKI data.
If the Encoding attribute is not present, then it is assumed that the PKI data is ASN.1 data encoded in DER.
So far, the following URIs have been identified:
EncapsulatedPKIData| Enum Constant and Description |
|---|
BER |
DER |
NOT_SUPPORTED_CER |
NOT_SUPPORTED_PER |
XER |
| Modifier and Type | Method and Description |
|---|---|
com.objsys.asn1j.runtime.Asn1DecodeBuffer |
createDecodeBuffer(byte[] aBytes) |
com.objsys.asn1j.runtime.Asn1EncodeBuffer |
createEncodeBuffer() |
java.lang.String |
getURI() |
static PKIEncodingType |
resolve(java.lang.String aURI) |
static PKIEncodingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PKIEncodingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKIEncodingType DER
public static final PKIEncodingType BER
public static final PKIEncodingType NOT_SUPPORTED_CER
public static final PKIEncodingType NOT_SUPPORTED_PER
public static final PKIEncodingType XER
public static PKIEncodingType[] values()
for (PKIEncodingType c : PKIEncodingType.values()) System.out.println(c);
public static PKIEncodingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getURI()
public static PKIEncodingType resolve(java.lang.String aURI) throws XMLSignatureException
XMLSignatureExceptionpublic com.objsys.asn1j.runtime.Asn1EncodeBuffer createEncodeBuffer()
throws XMLSignatureException
XMLSignatureExceptionpublic com.objsys.asn1j.runtime.Asn1DecodeBuffer createDecodeBuffer(byte[] aBytes)
throws XMLSignatureException
XMLSignatureExceptionCopyright © 2025. All rights reserved.