Package org.ldaptive.asn1
Class AbstractDERType
- java.lang.Object
-
- org.ldaptive.asn1.AbstractDERType
-
- Direct Known Subclasses:
AttributeValueAssertion
,BooleanType
,ConstructedDEREncoder
,ContextType
,IntegerType
,NullType
,OctetStringType
,OidType
,UuidType
public abstract class AbstractDERType extends java.lang.Object
Provides functionality common to DER types implementations.- Author:
- Middleware Services
-
-
Constructor Summary
Constructors Constructor Description AbstractDERType(DERTag tag)
Creates a new abstract der type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected byte[]
encode(byte[]... items)
DER encode the supplied items with the tag associated with this type.
-
-
-
Constructor Detail
-
AbstractDERType
public AbstractDERType(DERTag tag)
Creates a new abstract der type.- Parameters:
tag
- to encode for this type
-
-