Uses of Class
com.digt.trusted.asn1.DERObject

Packages that use DERObject
com.digt.trusted.asn1 A library for parsing and writing ASN.1 objects. 
com.digt.trusted.asn1.cmp   
com.digt.trusted.asn1.cms   
com.digt.trusted.asn1.ess Support classes useful for encoding and supporting Enhacned Security Services for S/MIME as described RFC 2634. 
com.digt.trusted.asn1.misc   
com.digt.trusted.asn1.mozilla Support classes useful for encoding objects used by mozilla. 
com.digt.trusted.asn1.ocsp Support classes useful for encoding and supporting OCSP objects. 
com.digt.trusted.asn1.oiw Objects and OID for the support of ISO OIW. 
com.digt.trusted.asn1.pkcs Support classes useful for encoding and supporting the various RSA PKCS documents. 
com.digt.trusted.asn1.sec Classes for support of the SEC standard for Elliptic Curve. 
com.digt.trusted.asn1.smime Support classes useful for encoding and supporting S/MIME. 
com.digt.trusted.asn1.tsp Support classes useful for encoding and supporting Time Stamp Protocol as described RFC 3161. 
com.digt.trusted.asn1.util An ASN.1 dump utility. 
com.digt.trusted.asn1.x509 Support classes useful for encoding and processing X.509 certificates. 
com.digt.trusted.asn1.x9 Support classes useful for encoding and supporting X9.62 elliptic curve. 
com.digt.trusted.jce   
com.digt.trusted.util.addon   
com.digt.trusted.x509   
 

Uses of DERObject in com.digt.trusted.asn1
 

Subclasses of DERObject in com.digt.trusted.asn1
 class ASN1Null
          A NULL object.
 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 BERSequence
           
 class BERSet
           
 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 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 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 com.digt.trusted.asn1 that return DERObject
protected  DERObject ASN1InputStream.buildObject(int tag, byte[] bytes)
          build an object given its tag and a byte stream to construct it from.
protected  DERObject DERInputStream.buildObject(int tag, byte[] bytes)
          Deprecated. build an object given its tag and a byte stream to construct it from.
 DERObject ASN1Encodable.getDERObject()
           
 DERObject DEREncodable.getDERObject()
           
 DERObject ASN1TaggedObject.getObject()
          return whatever was following the tag.
 DERObject DERApplicationSpecific.getObject()
           
 DERObject ASN1InputStream.readObject()
           
 DERObject BERInputStream.readObject()
          Deprecated.  
 DERObject DERInputStream.readObject()
          Deprecated.  
abstract  DERObject ASN1Encodable.toASN1Object()
           
 DERObject DERObject.toASN1Object()
           
 

Constructors in com.digt.trusted.asn1 with parameters of type DERObject
BERConstructedOctetString(DERObject obj)
           
 

Uses of DERObject in com.digt.trusted.asn1.cmp
 

Subclasses of DERObject in com.digt.trusted.asn1.cmp
 class PKIFailureInfo
           PKIFailureInfo ::= BIT STRING { badAlg (0), -- unrecognized or unsupported Algorithm Identifier badRequest (2), -- transaction not permitted or supported badDataFormat (5), -- the data submitted has the wrong format timeNotAvailable (14), -- the TSA's time source is not available unacceptedPolicy (15), -- the requested TSA policy is not supported by the TSA unacceptedExtension (16), -- the requested extension is not supported by the TSA addInfoNotAvailable (17) -- the additional information requested could not be understood -- or is not available systemFailure (25) -- the request cannot be handled due to system failure }
 

Methods in com.digt.trusted.asn1.cmp that return DERObject
 DERObject PKIFreeText.toASN1Object()
           PKIFreeText ::= SEQUENCE SIZE (1..MAX) OF UTF8String
 DERObject PKIStatusInfo.toASN1Object()
           PKIStatusInfo ::= SEQUENCE { status PKIStatus, (INTEGER) statusString PKIFreeText OPTIONAL, failInfo PKIFailureInfo OPTIONAL (BIT STRING) } PKIStatus: granted (0), -- you got exactly what you asked for grantedWithMods (1), -- you got something like what you asked for rejection (2), -- you don't get it, more information elsewhere in the message waiting (3), -- the request body part has not yet been processed, expect to hear more later revocationWarning (4), -- this message contains a warning that a revocation is imminent revocationNotification (5), -- notification that a revocation has occurred keyUpdateWarning (6) -- update already done for the oldCertId specified in CertReqMsg PKIFailureInfo: badAlg (0), -- unrecognized or unsupported Algorithm Identifier badMessageCheck (1), -- integrity check failed (e.g., signature did not verify) badRequest (2), -- transaction not permitted or supported badTime (3), -- messageTime was not sufficiently close to the system time, as defined by local policy badCertId (4), -- no certificate could be found matching the provided criteria badDataFormat (5), -- the data submitted has the wrong format wrongAuthority (6), -- the authority indicated in the request is different from the one creating the response token incorrectData (7), -- the requester's data is incorrect (for notary services) missingTimeStamp (8), -- when the timestamp is missing but should be there (by policy) badPOP (9) -- the proof-of-possession failed
 

Uses of DERObject in com.digt.trusted.asn1.cms
 

Methods in com.digt.trusted.asn1.cms that return DERObject
 DERObject Attribute.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CompressedData.toASN1Object()
           
 DERObject ContentInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject EncryptedContentInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject EnvelopedData.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject IssuerAndSerialNumber.toASN1Object()
           
 DERObject KEKIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject KEKRecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject KeyAgreeRecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject KeyTransRecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OriginatorIdentifierOrKey.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OriginatorInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OriginatorPublicKey.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OtherKeyAttribute.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OtherRecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject PasswordRecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject RecipientIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject RecipientInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject RecipientKeyIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SignedData.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SignerIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SignerInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject Time.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 

Constructors in com.digt.trusted.asn1.cms with parameters of type DERObject
OriginatorIdentifierOrKey(DERObject id)
           
RecipientIdentifier(DERObject id)
           
RecipientInfo(DERObject info)
           
SignerIdentifier(DERObject id)
           
Time(DERObject time)
           
 

Uses of DERObject in com.digt.trusted.asn1.ess
 

Methods in com.digt.trusted.asn1.ess that return DERObject
 DERObject ESSCertID.toASN1Object()
           ESSCertID ::= SEQUENCE { certHash Hash, issuerSerial IssuerSerial OPTIONAL }
 DERObject SigningCertificate.toASN1Object()
          The definition of SigningCertificate is SigningCertificate ::= SEQUENCE { certs SEQUENCE OF ESSCertID, policies SEQUENCE OF PolicyInformation OPTIONAL } id-aa-signingCertificate OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9) smime(16) id-aa(2) 12 }
 

Uses of DERObject in com.digt.trusted.asn1.misc
 

Subclasses of DERObject in com.digt.trusted.asn1.misc
 class NetscapeCertType
          The NetscapeCertType object.
 class NetscapeRevocationURL
           
 class VerisignCzagExtension
           
 

Methods in com.digt.trusted.asn1.misc that return DERObject
 DERObject CAST5CBCParameters.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject IDEACBCPar.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 

Uses of DERObject in com.digt.trusted.asn1.mozilla
 

Methods in com.digt.trusted.asn1.mozilla that return DERObject
 DERObject PublicKeyAndChallenge.toASN1Object()
           
 

Uses of DERObject in com.digt.trusted.asn1.ocsp
 

Subclasses of DERObject in com.digt.trusted.asn1.ocsp
 class OCSPResponseStatus
           
 

Methods in com.digt.trusted.asn1.ocsp that return DERObject
 DERObject BasicOCSPResponse.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CertID.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CertStatus.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CrlID.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OCSPRequest.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OCSPResponse.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject Request.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject ResponderID.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject ResponseBytes.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject ResponseData.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject RevokedInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject ServiceLocator.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject Signature.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SingleResponse.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject TBSRequest.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 

Uses of DERObject in com.digt.trusted.asn1.oiw
 

Methods in com.digt.trusted.asn1.oiw that return DERObject
 DERObject ElGamalParameter.toASN1Object()
           
 

Uses of DERObject in com.digt.trusted.asn1.pkcs
 

Methods in com.digt.trusted.asn1.pkcs that return DERObject
 DERObject SafeBag.getBagValue()
           
 DERObject CertBag.getCertValue()
           
 DERObject EncryptionScheme.getDERObject()
           
 DERObject PBES2Algorithms.getDERObject()
          Deprecated.  
 DERObject EncryptionScheme.getObject()
           
 DERObject PrivateKeyInfo.getPrivateKey()
           
 DERObject Attribute.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AuthenticatedSafe.toASN1Object()
           
 DERObject CertBag.toASN1Object()
           
 DERObject CertificationRequest.toASN1Object()
           
 DERObject CertificationRequestInfo.toASN1Object()
           
 DERObject ContentInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject DHParameter.toASN1Object()
           
 DERObject EncryptedData.toASN1Object()
           
 DERObject EncryptedPrivateKeyInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject IssuerAndSerialNumber.toASN1Object()
           
 DERObject MacData.toASN1Object()
           
 DERObject PBES2Parameters.toASN1Object()
           
 DERObject PBKDF2Params.toASN1Object()
           
 DERObject PKCS12PBEParams.toASN1Object()
           
 DERObject Pfx.toASN1Object()
           
 DERObject PrivateKeyInfo.toASN1Object()
          write out an RSA private key with it's asscociated information as described in PKCS8.
 DERObject RC2CBCParameter.toASN1Object()
           
 DERObject RSAESOAEPparams.toASN1Object()
           RSAES-OAEP-params ::= SEQUENCE { hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1, maskGenAlgorithm [1] PKCS1MGFAlgorithms DEFAULT mgf1SHA1, pSourceAlgorithm [2] PKCS1PSourceAlgorithms DEFAULT pSpecifiedEmpty } OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-sha1 PARAMETERS NULL }| { OID id-sha256 PARAMETERS NULL }| { OID id-sha384 PARAMETERS NULL }| { OID id-sha512 PARAMETERS NULL }, ... -- Allows for future expansion -- } PKCS1MGFAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms }, ... -- Allows for future expansion -- } PKCS1PSourceAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-pSpecified PARAMETERS OCTET STRING }, ... -- Allows for future expansion -- }
 DERObject RSAPrivateKeyStructure.toASN1Object()
          This outputs the key in PKCS1v2 format.
 DERObject RSASSAPSSparams.toASN1Object()
           RSASSA-PSS-params ::= SEQUENCE { hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1, maskGenAlgorithm [1] PKCS1MGFAlgorithms DEFAULT mgf1SHA1, saltLength [2] INTEGER DEFAULT 20, trailerField [3] TrailerField DEFAULT trailerFieldBC } OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-sha1 PARAMETERS NULL }| { OID id-sha256 PARAMETERS NULL }| { OID id-sha384 PARAMETERS NULL }| { OID id-sha512 PARAMETERS NULL }, ... -- Allows for future expansion -- } PKCS1MGFAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-mgf1 PARAMETERS OAEP-PSSDigestAlgorithms }, ... -- Allows for future expansion -- } TrailerField ::= INTEGER { trailerFieldBC(1) }
 DERObject SafeBag.toASN1Object()
           
 DERObject SignedData.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SignerInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 

Constructors in com.digt.trusted.asn1.pkcs with parameters of type DERObject
CertBag(DERObjectIdentifier certId, DERObject certValue)
           
PrivateKeyInfo(AlgorithmIdentifier algId, DERObject privateKey)
           
SafeBag(DERObjectIdentifier oid, DERObject obj)
           
SafeBag(DERObjectIdentifier oid, DERObject obj, ASN1Set bagAttributes)
           
 

Uses of DERObject in com.digt.trusted.asn1.sec
 

Methods in com.digt.trusted.asn1.sec that return DERObject
 DERObject ECPrivateKeyStructure.toASN1Object()
           
 

Uses of DERObject in com.digt.trusted.asn1.smime
 

Methods in com.digt.trusted.asn1.smime that return DERObject
 DERObject SMIMECapabilities.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject SMIMECapability.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 

Uses of DERObject in com.digt.trusted.asn1.tsp
 

Methods in com.digt.trusted.asn1.tsp that return DERObject
 DERObject Accuracy.toASN1Object()
           Accuracy ::= SEQUENCE { seconds INTEGER OPTIONAL, millis [0] INTEGER (1..999) OPTIONAL, micros [1] INTEGER (1..999) OPTIONAL }
 DERObject MessageImprint.toASN1Object()
           MessageImprint ::= SEQUENCE { hashAlgorithm AlgorithmIdentifier, hashedMessage OCTET STRING }
 DERObject TSTInfo.toASN1Object()
           TSTInfo ::= SEQUENCE { version INTEGER { v1(1) }, policy TSAPolicyId, messageImprint MessageImprint, -- MUST have the same value as the similar field in -- TimeStampReq serialNumber INTEGER, -- Time-Stamping users MUST be ready to accommodate integers -- up to 160 bits.
 DERObject TimeStampReq.toASN1Object()
           TimeStampReq ::= SEQUENCE { version INTEGER { v1(1) }, messageImprint MessageImprint, --a hash algorithm OID and the hash value of the data to be --time-stamped reqPolicy TSAPolicyId OPTIONAL, nonce INTEGER OPTIONAL, certReq BOOLEAN DEFAULT FALSE, extensions [0] IMPLICIT Extensions OPTIONAL }
 DERObject TimeStampResp.toASN1Object()
           TimeStampResp ::= SEQUENCE { status PKIStatusInfo, timeStampToken TimeStampToken OPTIONAL }
 

Uses of DERObject in com.digt.trusted.asn1.util
 

Methods in com.digt.trusted.asn1.util with parameters of type DERObject
static java.lang.String DERDump.dumpAsString(DERObject obj)
          Deprecated. dump out a DER object as a formatted string
 

Uses of DERObject in com.digt.trusted.asn1.x509
 

Subclasses of DERObject in com.digt.trusted.asn1.x509
 class CertPolicyId
          CertPolicyId, used in the CertificatePolicies and PolicyMappings X509V3 Extensions.
 class CRLNumber
          The CRLNumber object.
 class CRLReason
          The CRLReason enumeration.
 class KeyPurposeId
          The KeyPurposeId object.
 class KeyUsage
          The KeyUsage object.
 class PolicyQualifierId
          PolicyQualifierId, used in the CertificatePolicies X509V3 extension.
 class ReasonFlags
          The ReasonFlags object.
 

Methods in com.digt.trusted.asn1.x509 that return DERObject
protected  DERObject X509NameEntryConverter.convertHexEncoded(java.lang.String str, int off)
          Convert an inline encoded hex string rendition of an ASN.1 object back into its corresponding ASN.1 object.
 DERObject X509DefaultEntryConverter.getConvertedValue(DERObjectIdentifier oid, java.lang.String value)
          Apply default coversion for the given value depending on the oid and the character range of the value.
abstract  DERObject X509NameEntryConverter.getConvertedValue(DERObjectIdentifier oid, java.lang.String value)
          Convert the passed in String value into the appropriate ASN.1 encoded object.
 DERObject GOST3410ELParameter.getDERObject()
           
 DERObject GOST3410Parameter.getDERObject()
           
 DERObject SubjectPublicKeyInfo.getPublicKey()
          for when the public key is an encoded object - if the bitstring can't be decoded this routine throws an IOException.
 DERObject AccessDescription.toASN1Object()
           
 DERObject AlgorithmIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AttCertIssuer.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AttCertValidityPeriod.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject Attribute.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AttributeCertificate.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AttributeCertificateInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject AuthorityInformationAccess.toASN1Object()
           
 DERObject AuthorityKeyIdentifier.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject BasicConstraints.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CRLDistPoint.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject CertificateList.toASN1Object()
           
 DERObject CertificatePolicies.toASN1Object()
          Deprecated. use an ASN1Sequence of PolicyInformation
 DERObject DSAParameter.toASN1Object()
           
 DERObject DigestInfo.toASN1Object()
           
 DERObject DisplayText.toASN1Object()
           
 DERObject DistributionPoint.toASN1Object()
           
 DERObject DistributionPointName.toASN1Object()
           
 DERObject ExtendedKeyUsage.toASN1Object()
           
 DERObject GeneralName.toASN1Object()
           
 DERObject GeneralNames.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject GeneralSubtree.toASN1Object()
           
 DERObject Holder.toASN1Object()
           
 DERObject IetfAttrSyntax.toASN1Object()
           IetfAttrSyntax ::= SEQUENCE { policyAuthority [0] GeneralNames OPTIONAL, values SEQUENCE OF CHOICE { octets OCTET STRING, oid OBJECT IDENTIFIER, string UTF8String } }
 DERObject IssuerSerial.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject IssuingDistributionPoint.toASN1Object()
           
 DERObject NameConstraints.toASN1Object()
           
 DERObject NoticeReference.toASN1Object()
          Describe toASN1Object method here.
 DERObject ObjectDigestInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject PolicyInformation.toASN1Object()
           
 DERObject PolicyMappings.toASN1Object()
           
 DERObject PolicyQualifierInfo.toASN1Object()
          Returns a DER-encodable representation of this instance.
 DERObject RSAPublicKeyStructure.toASN1Object()
          This outputs the key in PKCS1v2 format.
 DERObject SubjectKeyIdentifier.toASN1Object()
           
 DERObject SubjectPublicKeyInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject TBSCertList.toASN1Object()
           
 DERObject TBSCertList.CRLEntry.toASN1Object()
           
 DERObject TBSCertificateStructure.toASN1Object()
           
 DERObject Time.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject UserNotice.toASN1Object()
           
 DERObject V2Form.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X509CertificateStructure.toASN1Object()
           
 DERObject X509Extensions.toASN1Object()
           Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension Extension ::= SEQUENCE { extnId EXTENSION.
 DERObject X509Name.toASN1Object()
           
 

Constructors in com.digt.trusted.asn1.x509 with parameters of type DERObject
GeneralName(DERObject name, int tag)
          Deprecated. this constructor seems the wrong way round!
Time(DERObject time)
           
 

Uses of DERObject in com.digt.trusted.asn1.x9
 

Methods in com.digt.trusted.asn1.x9 that return DERObject
 DERObject X962Parameters.getParameters()
           
 DERObject X9FieldID.getParameters()
           
 DERObject KeySpecificInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject OtherInfo.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X962Parameters.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X9Curve.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X9ECParameters.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X9ECPoint.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X9FieldElement.toASN1Object()
          Produce an object suitable for an ASN1OutputStream.
 DERObject X9FieldID.toASN1Object()
          Produce a DER encoding of the following structure.
 

Constructors in com.digt.trusted.asn1.x9 with parameters of type DERObject
X962Parameters(DERObject obj)
           
 

Uses of DERObject in com.digt.trusted.jce
 

Methods in com.digt.trusted.jce that return DERObject
 DERObject X509KeyUsage.toASN1Object()
           
 

Uses of DERObject in com.digt.trusted.util.addon
 

Methods in com.digt.trusted.util.addon with parameters of type DERObject
static java.lang.String TD_Sign.DER2String(DERObject obj)
           
 

Uses of DERObject in com.digt.trusted.x509
 

Methods in com.digt.trusted.x509 that return DERObject
 DERObject X509Attribute.toASN1Object()