All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.cookbook.timestamp.ContentTimestampGenerator Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
/**
 * DSS - Digital Signature Services
 * Copyright (C) 2015 European Commission, provided under the CEF programme
 *
 * This file is part of the "DSS - Digital Signature Services" project.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
package eu.europa.esig.dss.cookbook.timestamp;

import javax.xml.crypto.dsig.CanonicalizationMethod;

import org.bouncycastle.tsp.TimeStampToken;

import eu.europa.esig.dss.DigestAlgorithm;
import eu.europa.esig.dss.TimestampParameters;
import eu.europa.esig.dss.validation.TimestampToken;
import eu.europa.esig.dss.x509.CertificatePool;
import eu.europa.esig.dss.x509.TimestampType;
import eu.europa.esig.dss.x509.tsp.TSPSource;

/**
 * From RFC 3216, section 3.12.4:
 * The content time-stamp attribute is an attribute which is the time-
 * stamp of the signed data content before it is signed.
 *
 * The content time-stamp attribute must be a signed attribute.
 *
 * The following object identifier identifies the signer-attribute
 * attribute:
 *
 * id-aa-ets-contentTimestamp OBJECT IDENTIFIER ::= { iso(1)
 * member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-9(9)
 * smime(16) id-aa(2) 20}
 *
 * Content time-stamp attribute values have ASN.1 type ContentTimestamp:
 * ContentTimestamp::= TimeStampToken
 *
 * The value of messageImprint field within TimeStampToken must be a
 * hash of the value of eContent field within encapContentInfo within
 * the signedData.
 *
 * From ETSI 101 733 v2.2:
 * ----------------------
 * The content-time-stamp attribute is an attribute that is the time-stamp token of the signed data content before it
 * is signed.
 * The content-time-stamp attribute shall be a signed attribute.
 * The following object identifier identifies the content-time-stamp attribute:
 * id-aa-ets-contentTimestamp OBJECT IDENTIFIER ::= { iso(1) member-body(2)
 * us(840) rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) id-aa(2) 20}
 *
 * content-time-stamp attribute values have ASN.1 type ContentTimestamp:
 * ContentTimestamp::= TimeStampToken
 *
 * The value of messageImprint of TimeStampToken (as described in RFC 3161 [7]) shall be a hash of the
 * message digest as defined in clause 5.6.1 of the present document.
 * For further information and definition of TimeStampToken, see clause 7.4.
 * ETSI
 * 36 ETSI TS 101 733 V2.2.1 (2013-04)
 * NOTE: content-time-stamp indicates that the signed information was formed before the date included in
 * the content-time-stamp.
 */

public class ContentTimestampGenerator {

	private final String DEFAULT_TIMESTAMP_CREATION_CANONICALIZATION_METHOD = CanonicalizationMethod.EXCLUSIVE;

	//The timestamping authority
	private TSPSource tspSource;

	private CertificatePool certificatePool;

	private TimestampParameters timestampParameters;

	public ContentTimestampGenerator() {
	}

	/**
	 * @param tspSource       the timestamping authority
	 * @param certificatePool
	 */
	public ContentTimestampGenerator(final TSPSource tspSource, final CertificatePool certificatePool) {
		this.tspSource = tspSource;
		this.certificatePool = certificatePool;
	}

	public CertificatePool getCertificatePool() {
		return certificatePool;
	}

	public void setCertificatePool(CertificatePool certificatePool) {
		this.certificatePool = certificatePool;
	}

	public TSPSource getTspSource() {
		return tspSource;
	}

	public void setTspSource(TSPSource tspSource) {
		this.tspSource = tspSource;
	}

	public void setTimestampParameters(TimestampParameters parameters) {
		timestampParameters = parameters;
	}

	public TimestampParameters getTimestampParameters() {
		return timestampParameters;
	}

	/**
	 * @param timestampType
	 * @return
	 */
	public TimestampToken generateTimestampToken(final TimestampType timestampType, final DigestAlgorithm digestAlgorithm, final byte[] references) {

		final TimeStampToken timeStampResponse = tspSource.getTimeStampResponse(digestAlgorithm, references);
		TimestampToken token = new TimestampToken(timeStampResponse, timestampType, certificatePool);
		return token;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy