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

Packages that use DERInteger
com.digt.trusted.asn1 A library for parsing and writing ASN.1 objects. 
com.digt.trusted.asn1.cms   
com.digt.trusted.asn1.ocsp Support classes useful for encoding and supporting OCSP objects. 
com.digt.trusted.asn1.pkcs Support classes useful for encoding and supporting the various RSA PKCS documents. 
com.digt.trusted.asn1.tsp Support classes useful for encoding and supporting Time Stamp Protocol as described RFC 3161. 
com.digt.trusted.asn1.x509 Support classes useful for encoding and processing X.509 certificates. 
 

Uses of DERInteger in com.digt.trusted.asn1
 

Methods in com.digt.trusted.asn1 that return DERInteger
static DERInteger DERInteger.getInstance(ASN1TaggedObject obj, boolean explicit)
          return an Integer from a tagged object.
static DERInteger DERInteger.getInstance(java.lang.Object obj)
          return an integer from the passed in object
 

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

Methods in com.digt.trusted.asn1.cms that return DERInteger
 DERInteger IssuerAndSerialNumber.getSerialNumber()
           
 DERInteger CompressedData.getVersion()
           
 DERInteger EnvelopedData.getVersion()
           
 DERInteger KEKRecipientInfo.getVersion()
           
 DERInteger KeyAgreeRecipientInfo.getVersion()
           
 DERInteger KeyTransRecipientInfo.getVersion()
           
 DERInteger PasswordRecipientInfo.getVersion()
           
 DERInteger RecipientInfo.getVersion()
           
 DERInteger SignedData.getVersion()
           
 DERInteger SignerInfo.getVersion()
           
 

Constructors in com.digt.trusted.asn1.cms with parameters of type DERInteger
IssuerAndSerialNumber(X509Name name, DERInteger serialNumber)
           
 

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

Methods in com.digt.trusted.asn1.ocsp that return DERInteger
 DERInteger CrlID.getCrlNum()
           
 DERInteger CertID.getSerialNumber()
           
 DERInteger ResponseData.getVersion()
           
 DERInteger TBSRequest.getVersion()
           
 

Constructors in com.digt.trusted.asn1.ocsp with parameters of type DERInteger
CertID(AlgorithmIdentifier hashAlgorithm, ASN1OctetString issuerNameHash, ASN1OctetString issuerKeyHash, DERInteger serialNumber)
           
ResponseData(DERInteger version, ResponderID responderID, DERGeneralizedTime producedAt, ASN1Sequence responses, X509Extensions responseExtensions)
           
 

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

Fields in com.digt.trusted.asn1.pkcs declared as DERInteger
static DERInteger RSASSAPSSparams.DEFAULT_SALT_LENGTH
           
static DERInteger RSASSAPSSparams.DEFAULT_TRAILER_FIELD
           
 

Methods in com.digt.trusted.asn1.pkcs that return DERInteger
 DERInteger IssuerAndSerialNumber.getCertificateSerialNumber()
           
 DERInteger RSASSAPSSparams.getSaltLength()
           
 DERInteger RSASSAPSSparams.getTrailerField()
           
 DERInteger CertificationRequestInfo.getVersion()
           
 DERInteger SignedData.getVersion()
           
 DERInteger SignerInfo.getVersion()
           
 

Constructors in com.digt.trusted.asn1.pkcs with parameters of type DERInteger
IssuerAndSerialNumber(X509Name name, DERInteger certSerialNumber)
           
RSASSAPSSparams(AlgorithmIdentifier hashAlgorithm, AlgorithmIdentifier maskGenAlgorithm, DERInteger saltLength, DERInteger trailerField)
           
SignedData(DERInteger _version, ASN1Set _digestAlgorithms, ContentInfo _contentInfo, ASN1Set _certificates, ASN1Set _crls, ASN1Set _signerInfos)
           
SignerInfo(DERInteger version, IssuerAndSerialNumber issuerAndSerialNumber, AlgorithmIdentifier digAlgorithm, ASN1Set authenticatedAttributes, AlgorithmIdentifier digEncryptionAlgorithm, ASN1OctetString encryptedDigest, ASN1Set unauthenticatedAttributes)
           
 

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

Methods in com.digt.trusted.asn1.tsp that return DERInteger
 DERInteger Accuracy.getMicros()
           
 DERInteger Accuracy.getMillis()
           
 DERInteger TSTInfo.getNonce()
           
 DERInteger TimeStampReq.getNonce()
           
 DERInteger Accuracy.getSeconds()
           
 DERInteger TSTInfo.getSerialNumber()
           
 DERInteger TimeStampReq.getVersion()
           
 

Constructors in com.digt.trusted.asn1.tsp with parameters of type DERInteger
Accuracy(DERInteger seconds, DERInteger millis, DERInteger micros)
           
TimeStampReq(MessageImprint messageImprint, DERObjectIdentifier tsaPolicy, DERInteger nonce, DERBoolean certReq, X509Extensions extensions)
           
TSTInfo(DERObjectIdentifier tsaPolicyId, MessageImprint messageImprint, DERInteger serialNumber, DERGeneralizedTime genTime, Accuracy accuracy, DERBoolean ordering, DERInteger nonce, GeneralName tsa, X509Extensions extensions)
           
 

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

Subclasses of DERInteger in com.digt.trusted.asn1.x509
 class CRLNumber
          The CRLNumber object.
 

Methods in com.digt.trusted.asn1.x509 that return DERInteger
 DERInteger IssuerSerial.getSerial()
           
 DERInteger AttributeCertificateInfo.getSerialNumber()
           
 DERInteger TBSCertificateStructure.getSerialNumber()
           
 DERInteger X509CertificateStructure.getSerialNumber()
           
 DERInteger TBSCertList.CRLEntry.getUserCertificate()
           
 DERInteger AttributeCertificateInfo.getVersion()
           
 DERInteger TBSCertList.getVersionNumber()
           
 DERInteger TBSCertificateStructure.getVersionNumber()
           
 

Methods in com.digt.trusted.asn1.x509 with parameters of type DERInteger
 void V2TBSCertListGenerator.addCRLEntry(DERInteger userCertificate, DERUTCTime revocationDate, int reason)
           
 void V2TBSCertListGenerator.addCRLEntry(DERInteger userCertificate, Time revocationDate, int reason)
           
 void V1TBSCertificateGenerator.setSerialNumber(DERInteger serialNumber)
           
 void V2AttributeCertificateInfoGenerator.setSerialNumber(DERInteger serialNumber)
           
 void V3TBSCertificateGenerator.setSerialNumber(DERInteger serialNumber)
           
 

Constructors in com.digt.trusted.asn1.x509 with parameters of type DERInteger
IssuerSerial(GeneralNames issuer, DERInteger serial)