
org.jscep.message.PkiMessageEncoder Maven / Gradle / Ivy
/*
* Copyright (c) 2010 ThruPoint Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.jscep.message;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.DERObjectIdentifier;
import org.bouncycastle.asn1.cms.Attribute;
import org.bouncycastle.asn1.cms.AttributeTable;
import org.bouncycastle.cms.*;
import org.jscep.transaction.PkiStatus;
import org.jscep.util.LoggingUtil;
import org.slf4j.Logger;
import java.io.IOException;
import java.security.PrivateKey;
import java.security.cert.CertStore;
import java.security.cert.CollectionCertStoreParameters;
import java.security.cert.X509Certificate;
import java.util.Collection;
import java.util.Collections;
import java.util.Hashtable;
public class PkiMessageEncoder {
private static Logger LOGGER = LoggingUtil.getLogger(PkiMessageEncoder.class);
private final PrivateKey senderKey;
private final X509Certificate senderCert;
private final PkcsPkiEnvelopeEncoder encoder;
public PkiMessageEncoder(PrivateKey priKey, X509Certificate sender, PkcsPkiEnvelopeEncoder enveloper) {
this.senderKey = priKey;
this.senderCert = sender;
this.encoder = enveloper;
}
public CMSSignedData encode(PkiMessage extends ASN1Encodable> message) throws IOException {
LOGGER.debug("Encoding message: {}", message);
CMSProcessable signable;
boolean hasMessageData = true;
if (message instanceof PkiResponse>) {
PkiResponse> response = (PkiResponse>) message;
if (response.getPkiStatus() != PkiStatus.SUCCESS) {
hasMessageData = false;
}
}
if (hasMessageData) {
CMSEnvelopedData ed = encoder.encode(message.getMessageData());
signable = new CMSProcessableByteArray(ed.getEncoded());
} else {
signable = null;
}
Hashtable table = new Hashtable();
for (Attribute attr : message.getAttributes()) {
table.put(attr.getAttrType(), attr);
}
AttributeTable signedAttrs = new AttributeTable(table);
Collection certColl = Collections.singleton(senderCert);
CertStore store;
try {
store = CertStore.getInstance("Collection", new CollectionCertStoreParameters(certColl));
} catch (Exception e) {
throw new IOException(e);
}
CMSSignedDataGenerator sdGenerator = new CMSSignedDataGenerator();
LOGGER.debug("Signing message using key belonging to '{}'", senderCert.getSubjectDN());
sdGenerator.addSigner(senderKey, senderCert, CMSSignedGenerator.DIGEST_SHA1, signedAttrs, null);
try {
sdGenerator.addCertificatesAndCRLs(store);
} catch (Exception e) {
throw new IOException(e);
}
try {
LOGGER.debug("Signing {} content", signable);
CMSSignedData sd = sdGenerator.generate(signable, true, (String) null);
LOGGER.debug("Encoded to: {}", sd.getEncoded());
return sd;
} catch (Exception e) {
throw new IOException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy