org.spongycastle.dvcs.SignedDVCSMessageGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.dvcs;
import java.io.IOException;
import org.spongycastle.asn1.ASN1Encoding;
import org.spongycastle.cms.CMSException;
import org.spongycastle.cms.CMSProcessableByteArray;
import org.spongycastle.cms.CMSSignedData;
import org.spongycastle.cms.CMSSignedDataGenerator;
public class SignedDVCSMessageGenerator
{
private final CMSSignedDataGenerator signedDataGen;
public SignedDVCSMessageGenerator(CMSSignedDataGenerator signedDataGen)
{
this.signedDataGen = signedDataGen;
}
/**
* Creates a CMSSignedData object containing the passed in DVCSMessage
*
* @param message the request to be signed.
* @return an encapsulating SignedData object.
* @throws DVCSException in the event of failure to encode the request or sign it.
*/
public CMSSignedData build(DVCSMessage message)
throws DVCSException
{
try
{
byte[] encapsulatedData = message.getContent().toASN1Primitive().getEncoded(ASN1Encoding.DER);
return signedDataGen.generate(new CMSProcessableByteArray(message.getContentType(), encapsulatedData), true);
}
catch (CMSException e)
{
throw new DVCSException("Could not sign DVCS request", e);
}
catch (IOException e)
{
throw new DVCSException("Could not encode DVCS request", e);
}
}
}