Example usage for org.bouncycastle.asn1.pkcs PKCSObjectIdentifiers id_aa_ets_revocationValues

List of usage examples for org.bouncycastle.asn1.pkcs PKCSObjectIdentifiers id_aa_ets_revocationValues

Introduction

In this page you can find the example usage for org.bouncycastle.asn1.pkcs PKCSObjectIdentifiers id_aa_ets_revocationValues.

Prototype

ASN1ObjectIdentifier id_aa_ets_revocationValues

To view the source code for org.bouncycastle.asn1.pkcs PKCSObjectIdentifiers id_aa_ets_revocationValues.

Click Source Link

Document

PKCS#9: 1.2.840.113549.1.9.16.2.24 - <a href="http://tools.ietf.org/html/rfc3126">RFC 3126</a>

Usage

From source file:eu.europa.ec.markt.dss.signature.cades.CadesLevelBaselineLTATimestampExtractor.java

License:Open Source License

public CadesLevelBaselineLTATimestampExtractor() {
    /* these attribute are validated elsewhere */
    excludedAttributesFromAtsHashIndex.add(PKCSObjectIdentifiers.id_aa_ets_certValues);
    excludedAttributesFromAtsHashIndex.add(PKCSObjectIdentifiers.id_aa_ets_revocationValues);
}

From source file:eu.europa.ec.markt.dss.signature.cades.CAdESProfileXL.java

License:Open Source License

private Hashtable<ASN1ObjectIdentifier, ASN1Encodable> extendUnsignedAttributes(
        Hashtable<ASN1ObjectIdentifier, ASN1Encodable> unsignedAttrs, X509Certificate signingCertificate,
        Date signingDate, CertificateSource optionalCertificateSource) throws IOException {

    ValidationContext validationContext = certificateVerifier.validateCertificate(signingCertificate,
            signingDate, optionalCertificateSource, null, null);

    try {/*ww w.j  a va  2s . c  om*/
        List<X509CertificateStructure> certificateValues = new ArrayList<X509CertificateStructure>();
        ArrayList<CertificateList> crlValues = new ArrayList<CertificateList>();
        ArrayList<BasicOCSPResponse> ocspValues = new ArrayList<BasicOCSPResponse>();

        /*
         * The ETSI TS 101 733 stipulates (6.2.1): "It references the full set of CA certificates that have been
         * used to validate an ES with Complete validation data up to (but not including) the signer's certificate.
         * [...] NOTE 1: The signer's certificate is referenced in the signing certificate attribute (see clause
         * 5.7.3)." (6.2.1)
         * 
         * "The second and subsequent CrlOcspRef fields shall be in the same order as the OtherCertID to which they
         * relate." (6.2.2)
         * 
         * Also, no mention of the way to order those second and subsequent fields, so we add the certificates as
         * provided by the context.
         */

        /* The SignedCertificate is in validationContext.getCertificate() */

        for (CertificateAndContext c : validationContext.getNeededCertificates()) {

            /*
             * Add every certificate except the signing certificate
             */
            if (!c.equals(signingCertificate)) {
                certificateValues.add(new X509CertificateStructure(
                        (ASN1Sequence) ASN1Object.fromByteArray(c.getCertificate().getEncoded())));
            }

        }

        /*
         * Record each CRL and OCSP with a reference to the corresponding certificate
         */
        for (CRL relatedcrl : validationContext.getNeededCRL()) {
            crlValues.add(new CertificateList(
                    (ASN1Sequence) ASN1Object.fromByteArray(((X509CRL) relatedcrl).getEncoded())));
        }

        for (BasicOCSPResp relatedocspresp : validationContext.getNeededOCSPResp()) {
            ocspValues.add((new BasicOCSPResponse(
                    (ASN1Sequence) ASN1Object.fromByteArray(relatedocspresp.getEncoded()))));
        }

        CertificateList[] crlValuesArray = new CertificateList[crlValues.size()];
        BasicOCSPResponse[] ocspValuesArray = new BasicOCSPResponse[ocspValues.size()];
        RevocationValues revocationValues = new RevocationValues(crlValues.toArray(crlValuesArray),
                ocspValues.toArray(ocspValuesArray), null);
        unsignedAttrs.put(PKCSObjectIdentifiers.id_aa_ets_revocationValues,
                new Attribute(PKCSObjectIdentifiers.id_aa_ets_revocationValues, new DERSet(revocationValues)));

        X509CertificateStructure[] certValuesArray = new X509CertificateStructure[certificateValues.size()];
        unsignedAttrs.put(PKCSObjectIdentifiers.id_aa_ets_certValues,
                new Attribute(PKCSObjectIdentifiers.id_aa_ets_certValues,
                        new DERSet(new DERSequence(certificateValues.toArray(certValuesArray)))));

    } catch (CertificateEncodingException e) {
        throw new RuntimeException(e);
    } catch (CRLException e) {
        throw new RuntimeException(e);
    }

    return unsignedAttrs;

}

From source file:eu.europa.ec.markt.dss.validation.cades.CAdESCRLSource.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override/*from   w w w  .ja  v a 2 s.c  o  m*/
public List<X509CRL> getCRLsFromSignature() {
    List<X509CRL> list = new ArrayList<X509CRL>();

    try {
        // Add certificates contained in SignedData
        for (CertificateList cl : (Collection<CertificateList>) cmsSignedData.getCRLs().getMatches(null)) {
            X509CRLObject crl = new X509CRLObject(cl);
            list.add(crl);
        }

        // Add certificates in CAdES-XL certificate-values inside SignerInfo attribute if present
        SignerInformation si = cmsSignedData.getSignerInfos().get(signerId);
        if (si != null && si.getUnsignedAttributes() != null
                && si.getUnsignedAttributes().get(PKCSObjectIdentifiers.id_aa_ets_revocationValues) != null) {

            RevocationValues revValues = RevocationValues.getInstance(si.getUnsignedAttributes()
                    .get(PKCSObjectIdentifiers.id_aa_ets_revocationValues).getAttrValues().getObjectAt(0));

            for (CertificateList crlObj : revValues.getCrlVals()) {
                X509CRLObject crl = new X509CRLObject(crlObj);
                list.add(crl);
            }
        }
    } catch (StoreException e) {
        throw new RuntimeException(e);
    } catch (CRLException e) {
        throw new RuntimeException(e);
    }

    return list;
}

From source file:eu.europa.ec.markt.dss.validation.cades.CAdESOCSPSource.java

License:Open Source License

@Override
public List<BasicOCSPResp> getOCSPResponsesFromSignature() {
    List<BasicOCSPResp> list = new ArrayList<BasicOCSPResp>();

    // Add certificates in CAdES-XL certificate-values inside SignerInfo attribute if present
    SignerInformation si = cmsSignedData.getSignerInfos().get(signerId);
    if (si != null && si.getUnsignedAttributes() != null
            && si.getUnsignedAttributes().get(PKCSObjectIdentifiers.id_aa_ets_revocationValues) != null) {

        RevocationValues revValues = RevocationValues.getInstance(si.getUnsignedAttributes()
                .get(PKCSObjectIdentifiers.id_aa_ets_revocationValues).getAttrValues().getObjectAt(0));

        for (BasicOCSPResponse ocspObj : revValues.getOcspVals()) {
            BasicOCSPResp bOcspObj = new BasicOCSPResp(ocspObj);
            ;//from   w  ww  .  java  2 s.  com
            list.add(bOcspObj);
        }
    }

    return list;
}

From source file:eu.europa.ec.markt.dss.validation102853.cades.CAdESCRLSource.java

License:Open Source License

private void extract() {

    x509CRLList = new ArrayList<X509CRL>();

    // Adds CRLs contained in SignedData
    final Store crLs = cmsSignedData.getCRLs();
    final Collection<X509CRLHolder> collection = (Collection<X509CRLHolder>) crLs.getMatches(null);
    for (final X509CRLHolder x509CRLHolder : collection) {

        final X509CRL x509CRL = DSSUtils.toX509CRL(x509CRLHolder);
        addCRLToken(x509CRL);//from   w ww  .j  a va 2 s.co  m
    }

    // Adds CRLs in -XL ... inside SignerInfo attribute if present
    if (signerInformation != null) {

        final AttributeTable attributes = signerInformation.getUnsignedAttributes();
        if (attributes != null) {
            /*
            ETSI TS 101 733 V2.2.1 (2013-04) page 43
            6.3.4 revocation-values Attribute Definition
            This attribute is used to contain the revocation information required for the following forms of extended electronic
            signature: CAdES-X Long, ES X-Long Type 1, and CAdES-X Long Type 2, see clause B.1.1 for an illustration of
            this form of electronic signature.
            The revocation-values attribute is an unsigned attribute. Only a single instance of this attribute shall occur with
            an electronic signature. It holds the values of CRLs and OCSP referenced in the
            complete-revocation-references attribute.
                    
            RevocationValues ::= SEQUENCE {
            crlVals [0] SEQUENCE OF CertificateList OPTIONAL,
            ocspVals [1] SEQUENCE OF BasicOCSPResponse OPTIONAL,
            otherRevVals [2] OtherRevVals OPTIONAL}
             */
            final Attribute attribute = attributes.get(PKCSObjectIdentifiers.id_aa_ets_revocationValues);
            if (attribute != null) {

                final ASN1Set attrValues = attribute.getAttrValues();

                final ASN1Encodable attValue = attrValues.getObjectAt(0);
                final RevocationValues revValues = RevocationValues.getInstance(attValue);
                for (final CertificateList revValue : revValues.getCrlVals()) {

                    addCRLToken(revValue);
                }
            }
        }

        /* TODO (pades): Read revocation data from from unsigned attribute  1.2.840.113583.1.1.8
          In the PKCS #7 object of a digital signature in a PDF file, identifies a signed attribute
          that "can include all the revocation information that is necessary to carry out revocation
          checks for the signer's certificate and its issuer certificates."
          Defined as adbe-revocationInfoArchival { adbe(1.2.840.113583) acrobat(1) security(1) 8 } in "PDF Reference, fifth edition: Adobe Portable Document Format, Version 1.6" Adobe Systems Incorporated, 2004.
          http://partners.adobe.com/public/developer/en/pdf/PDFReference16.pdf page 698
                
          RevocationInfoArchival ::= SEQUENCE {
        crl [0] EXPLICIT SEQUENCE of CRLs, OPTIONAL
        ocsp [1] EXPLICIT SEQUENCE of OCSP Responses, OPTIONAL
        otherRevInfo [2] EXPLICIT SEQUENCE of OtherRevInfo, OPTIONAL
          }
          OtherRevInfo ::= SEQUENCE {
        Type OBJECT IDENTIFIER
        Value OCTET STRING
          }
        */

        // TODO: (Bob: 2013 Dec 03) --> NICOLAS: Is there any other container within the CAdES signature with revocation data? (ie: timestamp)
    }
}

From source file:eu.europa.ec.markt.dss.validation102853.cades.CAdESOCSPSource.java

License:Open Source License

@Override
public List<BasicOCSPResp> getContainedOCSPResponses() {

    final List<BasicOCSPResp> list = new ArrayList<BasicOCSPResp>();

    // Add OCSPs from SignedData
    {/*from  ww w  .ja va  2  s. com*/
        final Store otherRevocationInfo = cmsSignedData
                .getOtherRevocationInfo(OCSPObjectIdentifiers.id_pkix_ocsp_basic);
        final Collection otherRevocationInfoMatches = otherRevocationInfo.getMatches(null);
        final ASN1Encodable[] matches = (ASN1Encodable[]) otherRevocationInfoMatches
                .toArray(new ASN1Encodable[otherRevocationInfoMatches.size()]);
        for (final ASN1Encodable asn1Encodable : matches) {
            final BasicOCSPResponse basicOcspResponse = BasicOCSPResponse.getInstance(asn1Encodable);
            final BasicOCSPResp basicOCSPResp = new BasicOCSPResp(basicOcspResponse);
            list.add(basicOCSPResp);
        }
    }
    {
        final Store otherRevocationInfo = cmsSignedData
                .getOtherRevocationInfo(CMSObjectIdentifiers.id_ri_ocsp_response);
        final Collection otherRevocationInfoMatches = otherRevocationInfo.getMatches(null);
        final ASN1Encodable[] matches = (ASN1Encodable[]) otherRevocationInfoMatches
                .toArray(new ASN1Encodable[otherRevocationInfoMatches.size()]);
        for (final ASN1Encodable asn1Encodable : matches) {
            final OCSPResponse ocspResponse = OCSPResponse.getInstance(asn1Encodable);
            final OCSPResp ocspResp = new OCSPResp(ocspResponse);
            try {
                final Object responseObject = ocspResp.getResponseObject();
                if (responseObject instanceof BasicOCSPResp) {
                    BasicOCSPResp basicOCSPResp = (BasicOCSPResp) responseObject;
                    list.add(basicOCSPResp);
                }
            } catch (OCSPException e) {
                throw new DSSException(e);
            }
        }
    }

    // Adds OCSP responses in -XL id_aa_ets_revocationValues inside SignerInfo attribute if present
    if (signerInformation != null) {

        final AttributeTable attributes = signerInformation.getUnsignedAttributes();
        if (attributes != null) {

            final Attribute attribute = attributes.get(PKCSObjectIdentifiers.id_aa_ets_revocationValues);
            /*
            ETSI TS 101 733 V2.2.1 (2013-04) page 43
            6.3.4 revocation-values Attribute Definition
            This attribute is used to contain the revocation information required for the following forms of extended electronic
            signature: CAdES-X Long, ES X-Long Type 1, and CAdES-X Long Type 2, see clause B.1.1 for an illustration of
            this form of electronic signature.
            The revocation-values attribute is an unsigned attribute. Only a single instance of this attribute shall occur with
            an electronic signature. It holds the values of CRLs and OCSP referenced in the
            complete-revocation-references attribute.
                    
            RevocationValues ::= SEQUENCE {
            crlVals [0] SEQUENCE OF CertificateList OPTIONAL,
            ocspVals [1] SEQUENCE OF BasicOCSPResponse OPTIONAL,
            otherRevVals [2] OtherRevVals OPTIONAL}
            */
            if (attribute != null) {

                final ASN1Set attrValues = attribute.getAttrValues();
                final ASN1Encodable attValue = attrValues.getObjectAt(0);
                final RevocationValues revValues = RevocationValues.getInstance(attValue);

                for (final BasicOCSPResponse revValue : revValues.getOcspVals()) {
                    final BasicOCSPResp ocspResp = new BasicOCSPResp(revValue);
                    list.add(ocspResp);
                }
                /* TODO: should add also OtherRevVals, but:
                 "The syntax and semantics of the other revocation values (OtherRevVals) are outside the scope of the present
                document. The definition of the syntax of the other form of revocation information is as identified by
                OtherRevRefType."
                */
            }

        }
    }

    /* TODO (pades): Read revocation data from from unsigned attribute  1.2.840.113583.1.1.8
      In the PKCS #7 object of a digital signature in a PDF file, identifies a signed attribute
      that "can include all the revocation information that is necessary to carry out revocation
      checks for the signer's certificate and its issuer certificates."
      Defined as adbe-revocationInfoArchival { adbe(1.2.840.113583) acrobat(1) security(1) 8 } in "PDF Reference, fifth edition: Adobe Portable Document Format, Version 1.6" Adobe Systems Incorporated, 2004.
      http://partners.adobe.com/public/developer/en/pdf/PDFReference16.pdf page 698
            
      RevocationInfoArchival ::= SEQUENCE {
    crl [0] EXPLICIT SEQUENCE of CRLs, OPTIONAL
    ocsp [1] EXPLICIT SEQUENCE of OCSP Responses, OPTIONAL
    otherRevInfo [2] EXPLICIT SEQUENCE of OtherRevInfo, OPTIONAL
      }
      OtherRevInfo ::= SEQUENCE {
    Type OBJECT IDENTIFIER
    Value OCTET STRING
      }
    */

    // TODO: (Bob: 2013 Dec 03) --> NICOLAS: Is there any other container within the CAdES signature with revocation data? (ie: timestamp)
    return list;
}

From source file:eu.europa.esig.dss.cades.validation.CAdESCRLSource.java

License:Open Source License

private void extract() {

    x509CRLList = new ArrayList<X509CRL>();

    // Adds CRLs contained in SignedData
    final Store<X509CRLHolder> crLs = cmsSignedData.getCRLs();
    final Collection<X509CRLHolder> collection = crLs.getMatches(null);
    for (final X509CRLHolder x509CRLHolder : collection) {

        final X509CRL x509CRL = DSSUtils.toX509CRL(x509CRLHolder);
        addCRLToken(x509CRL);/*from w ww .  j  a v a  2  s.c o m*/
    }

    // Adds CRLs in -XL ... inside SignerInfo attribute if present
    if (signerInformation != null) {

        final AttributeTable attributes = signerInformation.getUnsignedAttributes();
        if (attributes != null) {
            /*
                ETSI TS 101 733 V2.2.1 (2013-04) page 43
                6.3.4 revocation-values Attribute Definition
                This attribute is used to contain the revocation information required for the following forms of extended electronic
                signature: CAdES-X Long, ES X-Long Type 1, and CAdES-X Long Type 2, see clause B.1.1 for an illustration of
                this form of electronic signature.
                The revocation-values attribute is an unsigned attribute. Only a single instance of this attribute shall occur with
                an electronic signature. It holds the values of CRLs and OCSP referenced in the
                complete-revocation-references attribute.
                    
                RevocationValues ::= SEQUENCE {
                crlVals [0] SEQUENCE OF CertificateList OPTIONAL,
                ocspVals [1] SEQUENCE OF BasicOCSPResponse OPTIONAL,
                otherRevVals [2] OtherRevVals OPTIONAL}
             */
            final Attribute attribute = attributes.get(PKCSObjectIdentifiers.id_aa_ets_revocationValues);
            if (attribute != null) {

                final ASN1Set attrValues = attribute.getAttrValues();

                final ASN1Encodable attValue = attrValues.getObjectAt(0);
                final RevocationValues revValues = RevocationValues.getInstance(attValue);
                for (final CertificateList revValue : revValues.getCrlVals()) {

                    addCRLToken(revValue);
                }
            }
        }

        /* TODO (pades): Read revocation data from from unsigned attribute  1.2.840.113583.1.1.8
             In the PKCS #7 object of a digital signature in a PDF file, identifies a signed attribute
             that "can include all the revocation information that is necessary to carry out revocation
             checks for the signer's certificate and its issuer certificates."
             Defined as adbe-revocationInfoArchival { adbe(1.2.840.113583) acrobat(1) security(1) 8 } in "PDF Reference, fifth edition: Adobe Portable Document Format, Version 1.6" Adobe Systems Incorporated, 2004.
             http://partners.adobe.com/public/developer/en/pdf/PDFReference16.pdf page 698
                
             RevocationInfoArchival ::= SEQUENCE {
        crl [0] EXPLICIT SEQUENCE of CRLs, OPTIONAL
        ocsp [1] EXPLICIT SEQUENCE of OCSP Responses, OPTIONAL
        otherRevInfo [2] EXPLICIT SEQUENCE of OtherRevInfo, OPTIONAL
             }
             OtherRevInfo ::= SEQUENCE {
        Type OBJECT IDENTIFIER
        Value OCTET STRING
             }
         */

        // TODO: (Bob: 2013 Dec 03) --> NICOLAS: Is there any other container within the CAdES signature with revocation data? (ie: timestamp)
    }
}

From source file:eu.europa.esig.dss.cades.validation.CAdESOCSPSource.java

License:Open Source License

@Override
public List<BasicOCSPResp> getContainedOCSPResponses() {

    final List<BasicOCSPResp> basicOCSPResps = new ArrayList<BasicOCSPResp>();
    // Add OCSPs from SignedData
    addBasicOcspRespFrom_id_pkix_ocsp_basic(basicOCSPResps);
    addBasicOcspRespFrom_id_ri_ocsp_response(basicOCSPResps);
    // Adds OCSP responses in -XL id_aa_ets_revocationValues inside SignerInfo attribute if present
    if (signerInformation != null) {

        final AttributeTable attributes = signerInformation.getUnsignedAttributes();
        if (attributes != null) {

            final Attribute attribute = attributes.get(PKCSObjectIdentifiers.id_aa_ets_revocationValues);
            /*// w w  w  .  j  a  va  2 s  . c o  m
            ETSI TS 101 733 V2.2.1 (2013-04) page 43
                6.3.4 revocation-values Attribute Definition
                This attribute is used to contain the revocation information required for the following forms of extended electronic
                signature: CAdES-X Long, ES X-Long Type 1, and CAdES-X Long Type 2, see clause B.1.1 for an illustration of
                this form of electronic signature.
                The revocation-values attribute is an unsigned attribute. Only a single instance of this attribute shall occur with
                an electronic signature. It holds the values of CRLs and OCSP referenced in the
                complete-revocation-references attribute.
                    
                RevocationValues ::= SEQUENCE {
                crlVals [0] SEQUENCE OF CertificateList OPTIONAL,
                ocspVals [1] SEQUENCE OF BasicOCSPResponse OPTIONAL,
                otherRevVals [2] OtherRevVals OPTIONAL}
             */
            if (attribute != null) {

                final ASN1Set attrValues = attribute.getAttrValues();
                final ASN1Encodable attValue = attrValues.getObjectAt(0);
                final RevocationValues revocationValues = RevocationValues.getInstance(attValue);
                for (final BasicOCSPResponse basicOCSPResponse : revocationValues.getOcspVals()) {

                    final BasicOCSPResp basicOCSPResp = new BasicOCSPResp(basicOCSPResponse);
                    addBasicOcspResp(basicOCSPResps, basicOCSPResp);
                }
                /* TODO: should add also OtherRevVals, but:
                 "The syntax and semantics of the other revocation values (OtherRevVals) are outside the scope of the present
                     document. The definition of the syntax of the other form of revocation information is as identified by
                     OtherRevRefType."
                 */
            }

        }
    }

    /* TODO (pades): Read revocation data from from unsigned attribute  1.2.840.113583.1.1.8
        In the PKCS #7 object of a digital signature in a PDF file, identifies a signed attribute
        that "can include all the revocation information that is necessary to carry out revocation
        checks for the signer's certificate and its issuer certificates."
        Defined as adbe-revocationInfoArchival { adbe(1.2.840.113583) acrobat(1) security(1) 8 } in "PDF Reference, fifth edition: Adobe Portable Document Format, Version 1.6" Adobe Systems Incorporated, 2004.
        http://partners.adobe.com/public/developer/en/pdf/PDFReference16.pdf page 698
            
        RevocationInfoArchival ::= SEQUENCE {
    crl [0] EXPLICIT SEQUENCE of CRLs, OPTIONAL
    ocsp [1] EXPLICIT SEQUENCE of OCSP Responses, OPTIONAL
    otherRevInfo [2] EXPLICIT SEQUENCE of OtherRevInfo, OPTIONAL
        }
        OtherRevInfo ::= SEQUENCE {
    Type OBJECT IDENTIFIER
    Value OCTET STRING
        }
     */
    return basicOCSPResps;
}