Uses of Class
iaik.asn1.CodingException

Packages that use CodingException
com.entrust.toolkit.asn1.structures Contains clases used to parse ASN.1 structures. 
com.entrust.toolkit.credentials Contains classes for the creation and recovery of credentials in a variety of key sources. 
com.entrust.toolkit.security.spec Contains classes for algorithm parameter implementations. 
com.entrust.toolkit.x509.policies Contains classes used to check policies — password rules, for example. 
iaik.asn1   
iaik.asn1.structures   
iaik.pkcs.pkcs12   
iaik.pkcs.pkcs7   
iaik.pkcs.pkcs8   
iaik.security.dsa   
iaik.security.spec   
iaik.x509   
 

Uses of CodingException in com.entrust.toolkit.asn1.structures
 

Methods in com.entrust.toolkit.asn1.structures that throw CodingException
 ASN1Object PKIHeader.toASN1Object()
          This method converts the encapsulated representation to a raw ASN.1 representation.
 void PKIHeader.decode(ASN1Object message)
          This method decodes an ASN.1 object into its encapsulated form.
 ASN1Object DistributionPointName.toASN1Object()
          Returns this DistributionPointName as an ASN1Object.
 ASN1Object SubjectPublicKeyInfo.toASN1Object()
           
 void SubjectPublicKeyInfo.decode(ASN1Object obj)
           
 ASN1Object POPSigningKeyInputCMP.toASN1Object()
           
 void POPSigningKeyInputCMP.decode(ASN1Object obj)
           
 ASN1Object CertTemplateCMP.toASN1Object()
          This method converts the full certificate template to an ASN.1 object for transportation.
 void CertTemplateCMP.decode(ASN1Object obj)
           
 ASN1Object Controls.toASN1Object()
          This method converts the full certificate template to an ASN.1 object for transportation.
 ASN1Object Time.toASN1Object()
           
 void Time.decode(ASN1Object obj)
           
 ASN1Object FullCertTemplate.toASN1Object()
          This method converts the full certificate template to an ASN.1 object for transportation.
 ASN1Object Validity.toASN1Object()
           
 void Validity.decode(ASN1Object obj)
           
 ASN1Object Extension.toASN1Object()
           
 void Extension.decode(ASN1Object obj)
           
 ASN1Object PMACVALUE.toASN1Object()
           
 void PMACVALUE.decode(ASN1Object obj)
           
 

Constructors in com.entrust.toolkit.asn1.structures that throw CodingException
PKIHeader.PKIHeader(ASN1Object header)
          This constructor parses an ASN.1 object into an encapsulated PKIHeader.
OldDistributionPoint.OldDistributionPoint(ASN1Object point)
          Implements the ASN1Type interface.
DistributionPointName.DistributionPointName(ASN1Object obj)
          Constructs a DistributionPointName from an ASN1Object.
Controls.Controls(ASN1Object template)
          This constructor decodes an ASN.1 representation of a full certificate template.
FullCertTemplate.FullCertTemplate(ASN1Object template)
          This constructor decodes an ASN.1 representation of a full certificate template.
OldDistributionPointName.OldDistributionPointName(ASN1Object obj)
          Implements the ASN1Type interface.
AlgorithmIdentifier.AlgorithmIdentifier(ASN1Object algorithmID)
           
 

Uses of CodingException in com.entrust.toolkit.credentials
 

Methods in com.entrust.toolkit.credentials that throw CodingException
 PrivateKey Profile.getDecryptionKey(Name issuer, java.lang.String serialNumber)
           Returns the encryption key and serial number for the given issuer if the credentials file is logged in to the Toolkit.
 

Uses of CodingException in com.entrust.toolkit.security.spec
 

Methods in com.entrust.toolkit.security.spec that throw CodingException
 ASN1Object RSAOAEPParameterSpec.getEncoded()
           
 

Constructors in com.entrust.toolkit.security.spec that throw CodingException
RSAOAEPParameterSpec.RSAOAEPParameterSpec(ASN1Object spec)
           
 

Uses of CodingException in com.entrust.toolkit.x509.policies
 

Methods in com.entrust.toolkit.x509.policies that throw CodingException
 int ClientSettings.getAuthorityVersion()
          Get Authority version from policy certificate or attribute certificate, if any.
 

Uses of CodingException in iaik.asn1
 

Methods in iaik.asn1 that throw CodingException
 ASN1Object ASN1Object.getComponentAt(int index)
          Throws a CodingException.
 int ASN1Object.countComponents()
          Throws a CodingException.
 void ASN1Object.addComponent(ASN1Object component)
          Throws a CodingException.
protected abstract  void ASN1Object.decode(int length, java.io.InputStream is)
          Decodes an ASN1Object represented by the next length bytes of the given input stream.
protected  void ConstructedType.decode(int length, java.io.InputStream is)
          Decodes the next available data from the InputStream.
protected  void OCTET_STRING.decode(int length, java.io.InputStream is)
          Decodes an OCTET_STRING value from the given InputStream.
 ASN1Object ASN1.getComponentAt(int index)
          Returns the ASN1Object at the given index if the ASN1Object represented by this ASN1 object is of constructed type (e.g.
 int ASN1.countComponents()
          Returns the number of components in this ASN1 Object.
 byte[] ASN1.getFirstObject()
          Returns the first SEQUENCE of a SEQUENCE ASN1 object as DER encoded byte array.
static ASN1Object DerCoder.decode(byte[] coding)
          Creates an ASN.1 object from the DER encoded version.
static ASN1Object DerCoder.decode(java.io.InputStream is)
          Creates an ASN.1 object from the DER encoded version.
 void ASN1Type.decode(ASN1Object obj)
          Decodes an ASN1Object according to the ASN.1 type the class implements.
 ASN1Object ASN1Type.toASN1Object()
          Creates an ASN1Object according to the ASN.1 type the class implements.
protected  void BOOLEAN.decode(int length, java.io.InputStream is)
          Decodes a BOOLEAN value from the given InputStream.
 void EncodeListener.encodeCalled(ASN1Object o, int id)
          Method to be implemented for being called during the encoding procedure.
static ASN1Object ASN.createSequenceOf(ASN1Type[] array)
          Creates a SEQUENCE OF ASN.1 object from the given array of ASN.1 types.
static ASN1Object ASN.createSequenceOf(java.util.Vector asn1Type)
          Creates a SEQUENCE OF ASN.1 object from the given vector of ASN.1 types.
static ASN1Object ASN.createSetOf(ASN1Type[] array)
          Creates a SET OF ASN.1 object from the given array of ASN.1 types.
static ASN1Object ASN.createSetOf(ASN1Type[] array, boolean sorted)
          Creates a SET OF ASN.1 object from the given array of ASN.1 types.
static ASN1Object ASN.createSetOf(java.util.Vector asn1Type)
          Creates a SET OF ASN.1 object from the given vector of ASN.1 types.
static ASN1Type[] ASN.parseSequenceOf(ASN1Object obj, java.lang.Class cls)
          Parses a SEQUENCE OF ASN.1 object and returns an array containing all the components of the given ASN.1 object.
protected  void ENUMERATED.decode(int length, java.io.InputStream is)
          Decodes an ENUMERATED value from the given InputStream.
 void CON_SPEC.forceImplicitlyTagged(ASN type)
          Forces a CONTEX SPECIFIC ASN.1 object to be implicitly tagged.
protected  void CON_SPEC.decode(int length, java.io.InputStream is)
          Decodes the next available data from the InputStream.
 

Constructors in iaik.asn1 that throw CodingException
ASN1.ASN1(ASN1Object obj)
          Creates an ASN1 object from the supplied ASN1Object.
ASN1.ASN1(java.io.InputStream is)
          Creates an ASN1 object from an InputStream.
ASN1.ASN1(byte[] array)
          Creates an ASN1 object from a byte array.
 

Uses of CodingException in iaik.asn1.structures
 

Methods in iaik.asn1.structures that throw CodingException
 void AlgorithmID.decode(ASN1Object algorithmID)
          Decodes an AlgorithmID from the given ASN1Object.
 void AccessDescription.decode(ASN1Object obj)
          Decodes the given ASN.1 AccessDescription object for parsing the internal structure.
 ASN1Object AccessDescription.toASN1Object()
          Returns this AccessDescription as ASN1Object.
 void GeneralNames.decode(ASN1Object obj)
          Decodes a GeneralNames from the given ASN1Object.
 ASN1Object GeneralNames.toASN1Object()
          Returns this GeneralNames object as ASN1Object.
 ASN1Object GeneralName.toASN1Object()
          Returns this GeneralName object as ASN1Object.
 ASN1Object GeneralSubtree.toASN1Object()
          Returns this GeneralSubtree as (SEQUENCE) ASN1Object.
 void GeneralSubtree.decode(ASN1Object obj)
          Decodes a GeneralSubtree from the given ASN1Object.
 void RDN.decode(ASN1Object obj)
          Decodes a RelativeDistinguishedName from the given ASN1Object.
 void PolicyMapping.decode(ASN1Object obj)
          Decodes a PolicyMapping from the given ASN1Object.
 ASN1Object DistributionPoint.toASN1Object()
          Returns this DistributionPoint as (SEQUENCE) ASN1Object.
 void Attribute.decode(ASN1Object obj)
          Decodes an Attribute from the given ASN1Object.
 void Name.decode(ASN1Object obj)
          Decodes a Name from the given ASN1Object.
 void AVA.decode(ASN1Object obj)
          Decodes an AVA from the given ASN1Object.
 ASN1Object AVA.getASN1Value()
          Returns an ASN.1 representation of the value of this AttributeValueAssertion.
 

Constructors in iaik.asn1.structures that throw CodingException
AlgorithmID.AlgorithmID(ASN1Object algorithmID)
          Creates a new AlgorithmID from an ASN1Object.
AccessDescription.AccessDescription(ASN1Object obj)
          Creates a new AccessDescription from an ASN1Object.
GeneralNames.GeneralNames(ASN1Object obj)
          Constructs a GeneralNames object from an ASN1Object.
GeneralName.GeneralName(ASN1Object generalName)
          Creates a GeneralName form an ASN1Object.
PolicyQualifierInfo.PolicyQualifierInfo(ASN1Object policyQualifierInfo)
          Constructs a PolicyQualifierInfo from an ASN1Object.
PolicyInformation.PolicyInformation(ASN1Object policyInformation)
          Constructs a PolicyInformation from an ASN1Object.
ChoiceOfTime.ChoiceOfTime(ASN1Object obj)
          Creates a new ChoiceOfTime from an ASN1Object.
RDN.RDN(ASN1Object obj)
          Creates a RelativeDistinguishedName from an ASN1Object.
PolicyMapping.PolicyMapping(ASN1Object obj)
          Creates a policy mapping from an ASN1Object.
DistributionPoint.DistributionPoint(ASN1Object distributionPoint)
          Constructs a DistributionPoint from an ASN1Object.
Attribute.Attribute(ASN1Object obj)
          Creates an Attribute from an ASN1Object.
Name.Name(byte[] name)
          Creates a name from a DER encoded byte array.
Name.Name(ASN1Object obj)
          Constructs a Name from an ASN1Object.
AVA.AVA(ASN1Object obj)
          Creates an AttributeValueAssertion from an ASN1Object.
 

Uses of CodingException in iaik.pkcs.pkcs12
 

Methods in iaik.pkcs.pkcs12 that throw CodingException
 void AuthenticatedSafe.decode(ASN1Object obj)
          Decode and inits this AuthenticatedSafe from an ASN1Object.
 ASN1Object AuthenticatedSafe.toASN1Object()
          Returns this AuthenticatedSafe as ASN1Object.
protected static byte[] SafeBag.encodeSafeContents(SafeBag[] safeBags)
          Creates the SafeContants byte array as needed by AuthenticatedSafe from an array of SafeBags.
protected static SafeBag[] SafeBag.parseSafeContents(DerInputStream safeContents)
          Parses the SafeContents data structure and returns the included SafeBags.
 void KeyBag.decode(ASN1Object obj)
          Decodes the KeyBag given as ASN1Object.
 ASN1Object KeyBag.toASN1Object()
          Returns this KeyBag as ASN1Object.
 void PKCS8ShroudedKeyBag.decode(ASN1Object obj)
          Decodes the PKCS8ShroudedKeyBag given as ASN1Object.
 ASN1Object PKCS8ShroudedKeyBag.toASN1Object()
          Returns this PKCS8ShroudedKeyBag as ASN1Object.
 void CertificateBag.decode(ASN1Object obj)
          Decodes the CertificateBag given as ASN1Object.
 ASN1Object CertificateBag.toASN1Object()
          Returns this CertificateBag as ASN1Object.
 

Uses of CodingException in iaik.pkcs.pkcs7
 

Methods in iaik.pkcs.pkcs7 that throw CodingException
 void RecipientInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 RecipientInfo object for parsing the internal structure.
 void DigestInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 DigestInfo object for parsing the internal structure.
 void SignerInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 SignerInfo object for parsing the internal structure.
 ASN1Object SignerInfo.toASN1Object()
          Returns this SignerInfo as ASN1Object.
 void SignerInfo.encodeCalled(ASN1Object o, int id)
          This method implements the EncodeListener interface.
 void DigestedDataStream.encodeCalled(ASN1Object o, int id)
          This method implements the EncodeListener interface.
 

Constructors in iaik.pkcs.pkcs7 that throw CodingException
RecipientInfo.RecipientInfo(ASN1Object obj)
          Creates a RecipientInfo from an ASN1Object.
IssuerAndSerialNumber.IssuerAndSerialNumber(ASN1Object obj)
          Creates a new IssuerAndSerialNumber from an ASN1Object.
DigestInfo.DigestInfo(ASN1Object obj)
          Creates a new DigestInfo from an ASN1Object.
SignerInfo.SignerInfo(ASN1Object obj)
          Creates a PKCS#7 SignerInfo from an ASN1Object.
 

Uses of CodingException in iaik.pkcs.pkcs8
 

Methods in iaik.pkcs.pkcs8 that throw CodingException
 void PrivateKeyInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 PrivateKeyInfo object for parsing the internal structure.
 void EncryptedPrivateKeyInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 EncryptedPrivateKeyInfo object for parsing the internal structure.
 

Uses of CodingException in iaik.security.dsa
 

Constructors in iaik.security.dsa that throw CodingException
DSAParams.DSAParams(ASN1Object obj)
          Creates a new DSAParams object from the given ASN.1 Object.
 

Uses of CodingException in iaik.security.spec
 

Methods in iaik.security.spec that throw CodingException
 void IaikPBEParameterSpec.decode(ASN1Object obj)
          Decodes the given ASN.1 object and parses it for salt and iteration count.
 

Constructors in iaik.security.spec that throw CodingException
IaikPBEParameterSpec.IaikPBEParameterSpec(ASN1Object algorithmParameter)
          Creates a PBE paramter specification from an ASN1Object.
 

Uses of CodingException in iaik.x509
 

Methods in iaik.x509 that throw CodingException
 void PublicKeyInfo.decode(ASN1Object obj)
          Decodes the given ASN.1 PublicKeyInfo object for parsing the internal structure.
 void X509Certificate.decode(ASN1Object obj)
          Creates a X509Certificate from an ASN1Object.
 void X509CRL.decode(ASN1Object crl)
          Creates a CRL from an ASN1Object.
 

Constructors in iaik.x509 that throw CodingException
NetscapeCertRequest.NetscapeCertRequest(java.io.InputStream is)
          Creates a NetscapeCertRequest from an InputStream supplying the PEM or DER encoded request.
NetscapeCertRequest.NetscapeCertRequest(byte[] arr)
          Creates a NetscapeCertRequest from a byte array supplying the PEM or DER encoded request.