Uses of Interface
org.apache.commons.ssl.asn1.DEREncodable

Packages that use DEREncodable
org.apache.commons.ssl   
org.apache.commons.ssl.asn1   
 

Uses of DEREncodable in org.apache.commons.ssl
 

Methods in org.apache.commons.ssl with parameters of type DEREncodable
static byte[] PKCS8Key.encode(DEREncodable der)
           
static void ASN1Util.analyze(DEREncodable seq, org.apache.commons.ssl.ASN1Structure pkcs8, int depth)
           
 

Uses of DEREncodable in org.apache.commons.ssl.asn1
 

Subinterfaces of DEREncodable in org.apache.commons.ssl.asn1
 interface ASN1OctetStringParser
           
 interface ASN1SequenceParser
           
 interface ASN1SetParser
           
 interface ASN1TaggedObjectParser
           
 

Classes in org.apache.commons.ssl.asn1 that implement DEREncodable
 class ASN1Encodable
           
 class ASN1Null
          A NULL object.
 class ASN1Object
           
 class ASN1OctetString
           
 class ASN1Sequence
           
 class ASN1Set
           
 class ASN1TaggedObject
          ASN.1 TaggedObject - in ASN.1 nottation this is any object proceeded by a [n] where n is some number - these are assume to follow the construction rules (as with sequences).
 class BERConstructedOctetString
           
 class BERConstructedSequence
          Deprecated. use BERSequence
 class BERNull
          A BER NULL object.
 class BEROctetStringParser
           
 class BERSequence
           
 class BERSequenceParser
           
 class BERSet
           
 class BERSetParser
           
 class BERTaggedObject
          BER TaggedObject - in ASN.1 nottation this is any object proceeded by a [n] where n is some number - these are assume to follow the construction rules (as with sequences).
 class BERTaggedObjectParser
           
 class DERApplicationSpecific
          Base class for an application specific object
 class DERBitString
           
 class DERBMPString
          DER BMPString object.
 class DERBoolean
           
 class DERConstructedSequence
          Deprecated. use DERSequence.
 class DERConstructedSet
          Deprecated. use DERSet
 class DEREnumerated
           
 class DERGeneralizedTime
          Generalized time object.
 class DERGeneralString
           
 class DERIA5String
          DER IA5String object - this is an ascii string.
 class DERInteger
           
 class DERNull
          A NULL object.
 class DERNumericString
          DER NumericString object - this is an ascii string of characters {0,1,2,3,4,5,6,7,8,9, }.
 class DERObject
           
 class DERObjectIdentifier
           
 class DEROctetString
           
 class DERPrintableString
          DER PrintableString object.
 class DERSequence
           
 class DERSet
          A DER encoded set object
 class DERT61String
          DER T61String (also the teletex string)
 class DERTaggedObject
          DER TaggedObject - in ASN.1 nottation this is any object proceeded by a [n] where n is some number - these are assume to follow the construction rules (as with sequences).
 class DERUniversalString
          DER UniversalString object.
 class DERUnknownTag
          We insert one of these when we find a tag we don't recognise.
 class DERUTCTime
          UTC time object.
 class DERUTF8String
          DER UTF8String object.
 class DERVisibleString
          DER VisibleString object.
 

Methods in org.apache.commons.ssl.asn1 that return DEREncodable
 DEREncodable ASN1SequenceParser.readObject()
           
 DEREncodable BERTaggedObjectParser.getObjectParser(int tag, boolean isExplicit)
           
 DEREncodable DEREncodableVector.get(int i)
           
 DEREncodable ASN1StreamParser.readObject()
           
 DEREncodable ASN1TaggedObjectParser.getObjectParser(int tag, boolean isExplicit)
           
 DEREncodable ASN1Sequence.getObjectAt(int index)
          return the object at the sequence postion indicated by index.
 DEREncodable ASN1TaggedObject.getObjectParser(int tag, boolean isExplicit)
          Return the object held in this tagged object as a parser assuming it has the type of the passed in tag.
 DEREncodable ASN1SetParser.readObject()
           
 DEREncodable BERSetParser.readObject()
           
 DEREncodable ASN1Set.getObjectAt(int index)
          return the object at the set postion indicated by index.
 DEREncodable BERSequenceParser.readObject()
           
 

Methods in org.apache.commons.ssl.asn1 with parameters of type DEREncodable
 void BERSequenceGenerator.addObject(DEREncodable object)
           
 void DERConstructedSet.addObject(DEREncodable obj)
          Deprecated.  
 void DEREncodableVector.add(DEREncodable obj)
           
 void DERConstructedSequence.addObject(DEREncodable obj)
          Deprecated.  
protected  void ASN1Sequence.addObject(DEREncodable obj)
           
 void DERSequenceGenerator.addObject(DEREncodable object)
           
protected  void ASN1Set.addObject(DEREncodable obj)
           
 

Constructors in org.apache.commons.ssl.asn1 with parameters of type DEREncodable
ASN1OctetString(DEREncodable obj)
           
BERConstructedOctetString(DEREncodable obj)
           
DERConstructedSet(DEREncodable obj)
          Deprecated.  
DERBitString(DEREncodable obj)
           
DERTaggedObject(int tagNo, DEREncodable obj)
           
DERTaggedObject(boolean explicit, int tagNo, DEREncodable obj)
           
BERTaggedObject(int tagNo, DEREncodable obj)
           
BERTaggedObject(boolean explicit, int tagNo, DEREncodable obj)
           
BERSet(DEREncodable obj)
          create a set containing one object
DERSequence(DEREncodable obj)
          create a sequence containing one object
DERSet(DEREncodable obj)
           
ASN1TaggedObject(int tagNo, DEREncodable obj)
          Create a tagged object in the explicit style.
ASN1TaggedObject(boolean explicit, int tagNo, DEREncodable obj)
          Create a tagged object with the style given by the value of explicit.
BERSequence(DEREncodable obj)
          create a sequence containing one object
DERApplicationSpecific(int tag, DEREncodable object)
           
DERApplicationSpecific(boolean explicit, int tag, DEREncodable object)
           
DEROctetString(DEREncodable obj)
           
 



Copyright © 2011. All Rights Reserved.