Uses of Interface
pasn.ASN1PrimitiveObject

Packages that use ASN1PrimitiveObject
pasn ASN.1 types and common interfaces 
pasn.encoding Generic elements used to encode and decode tagged and untagged ASN.1 objects 
pasn.encoding.xer Basic and canonical XML Encoding Rules (XER) implementation 
pasn.misc.encoding BER, CER and DER streams common properties and TLV encoding rules 
 

Uses of ASN1PrimitiveObject in pasn
 

Subinterfaces of ASN1PrimitiveObject in pasn
 interface ASN1PrimitiveOrConstructedObject<T>
           
 

Classes in pasn that implement ASN1PrimitiveObject
 class ASN1BitString
           A BIT STRING is an ordered sequence of bit values.
 class ASN1BMPString
           The BMP (Basic Multilingual Plane) STRING type is a subset of ISO 10646-1 (Universal String).
 class ASN1Boolean
           Represents a {true, false} BOOLEAN
 class ASN1Enumerated
          
 class ASN1GeneralizedTime
          An ASN.1 GeneralizedTime is an extension to UTC time to allow the whole year representation (and not last 2 digits).
 class ASN1GeneralString
           A GENERAL STRING...
 class ASN1GraphicString
           A GRAPHIC STRING...
 class ASN1IA5String
           An IA5 String must never be empty (minimum size constraint of 1)
 class ASN1Identifier
           An ASN.1 Identifier expresses a sequence of integer components separated with dots (".").
 class ASN1Integer
           An ASN.1 INTEGER holds a finite, signed, integer, in a length-independant manner.
 class ASN1Null
           An ASN.1 NULL object is a paradoxal object in the sense that it represents no datum.
 class ASN1NumericString
           A NUMERIC STRING is composed of the following authorized characters: 0, 1, ..., 9 (space)
 class ASN1ObjectIdentifier
           An ASN.1 OBJECT IDENTIFIER (OID) is a constrained identifier.
 class ASN1OctetString
           An OCTET STRING is the most general ASN.1 holder for any list of octets.
 class ASN1PrintableString
           A PRINTABLE STRING is designed for supporting a small subset of character values.
 class ASN1RelativeIdentifier
           An ASN.1 RELATIVE IDENTIFIER (REL OID) is a non-constrained identifier.
 class ASN1SimpleObject<T>
           Concerns ASN.1 object encoded in PRIMITIVE form only
 class ASN1String
           Basic class to express ASN.1 STRING objects.
 class ASN1TeletexString
           A TELETEX STRING (or T61 STRING) is a string where each most significant octet is set to zero
 class ASN1Time
          Generic class that manipulates ASN.1 time objects common operations
 class ASN1UnformedOrderedObject<T>
           
 class ASN1UniversalString
           A UNIVERSAL STRING is the most generic ASN.1 string
 class ASN1UTCTime
          An ASN.1 UTCTime represents date and time, 2-digit year.
 class ASN1UTF8String
           An UTF8 String.
 class ASN1VideotexString
           A VIDEOTEX STRING...
 class ASN1VisibleString
           A VISIBLE STRING...
 

Methods in pasn that return types with arguments of type ASN1PrimitiveObject
 java.util.Collection<ASN1PrimitiveObject> ASN1PrimitiveOrConstructedObject.getConstructedValues(int maxSize)
           
 java.util.Collection<ASN1PrimitiveObject> ASN1OctetString.getConstructedValues(int maxSize)
           
 java.util.Collection<ASN1PrimitiveObject> ASN1BitString.getConstructedValues(int maxSize)
           
 

Uses of ASN1PrimitiveObject in pasn.encoding
 

Methods in pasn.encoding with parameters of type ASN1PrimitiveObject
 byte[] ASN1ValueEncoder.encode(ASN1PrimitiveObject asn)
           
abstract  void ASN1OutputStream.encode(ASN1PrimitiveObject asn, boolean optional)
           
 

Uses of ASN1PrimitiveObject in pasn.encoding.xer
 

Methods in pasn.encoding.xer with parameters of type ASN1PrimitiveObject
 void XEROutputStream.encode(ASN1PrimitiveObject asn, boolean optional)
           
 

Uses of ASN1PrimitiveObject in pasn.misc.encoding
 

Methods in pasn.misc.encoding with parameters of type ASN1PrimitiveObject
 void TLV_OutputStream.encode(ASN1PrimitiveObject asn, boolean optional)