org.bouncycastle.cms.CMSAuthenticatedGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail-jdk15 Show documentation
Show all versions of bcmail-jdk15 Show documentation
The Bouncy Castle Java CMS and S/MIME APIs for handling the CMS and S/MIME protocols. This jar contains CMS and S/MIME APIs for JDK 1.5. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs. If the S/MIME API is used, the JavaMail API and the Java activation framework will also be needed.
package org.bouncycastle.cms;
import java.security.SecureRandom;
import java.security.Provider;
import java.security.AlgorithmParameterGenerator;
import java.security.AlgorithmParameters;
import java.security.GeneralSecurityException;
import java.security.NoSuchAlgorithmException;
import java.security.spec.AlgorithmParameterSpec;
import java.security.spec.InvalidParameterSpecException;
import java.io.OutputStream;
import java.io.IOException;
import javax.crypto.Mac;
import javax.crypto.SecretKey;
import javax.crypto.spec.RC2ParameterSpec;
import javax.crypto.spec.IvParameterSpec;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.asn1.DEREncodable;
import org.bouncycastle.asn1.ASN1InputStream;
import org.bouncycastle.asn1.DERNull;
import org.bouncycastle.asn1.DERObjectIdentifier;
public class CMSAuthenticatedGenerator
extends CMSEnvelopedGenerator
{
/**
* base constructor
*/
public CMSAuthenticatedGenerator()
{
}
/**
* constructor allowing specific source of randomness
*
* @param rand instance of SecureRandom to use
*/
public CMSAuthenticatedGenerator(
SecureRandom rand)
{
super(rand);
}
protected AlgorithmIdentifier getAlgorithmIdentifier(String encryptionOID, AlgorithmParameterSpec paramSpec, Provider provider)
throws IOException, NoSuchAlgorithmException, InvalidParameterSpecException
{
AlgorithmParameters params = CMSEnvelopedHelper.INSTANCE.createAlgorithmParameters(encryptionOID, provider);
params.init(paramSpec);
DEREncodable asn1Params;
if (params != null)
{
ASN1InputStream aIn = new ASN1InputStream(params.getEncoded("ASN.1"));
asn1Params = aIn.readObject();
}
else
{
asn1Params = new DERNull();
}
AlgorithmIdentifier encAlgId = new AlgorithmIdentifier(
new DERObjectIdentifier(encryptionOID),
asn1Params);
return encAlgId;
}
protected AlgorithmParameterSpec generateParameterSpec(String encryptionOID, SecretKey encKey, Provider encProvider)
throws CMSException
{
try
{
if (encryptionOID.equals(RC2_CBC))
{
byte[] iv = new byte[8];
//
// mix in a bit extra...
//
rand.setSeed(System.currentTimeMillis());
rand.nextBytes(iv);
return new RC2ParameterSpec(encKey.getEncoded().length * 8, iv);
}
AlgorithmParameterGenerator pGen = CMSEnvelopedHelper.INSTANCE.createAlgorithmParameterGenerator(encryptionOID, encProvider);
AlgorithmParameters p = pGen.generateParameters();
return p.getParameterSpec(IvParameterSpec.class);
}
catch (GeneralSecurityException e)
{
return null;
}
}
protected class MacOutputStream
extends OutputStream
{
private final OutputStream out;
private Mac mac;
MacOutputStream(OutputStream out, Mac mac)
{
this.out = out;
this.mac = mac;
}
public void write(byte[] buf)
throws IOException
{
mac.update(buf, 0, buf.length);
out.write(buf, 0, buf.length);
}
public void write(byte[] buf, int off, int len)
throws IOException
{
mac.update(buf, off, len);
out.write(buf, off, len);
}
public void write(int i)
throws IOException
{
mac.update((byte)i);
out.write(i);
}
public void close()
throws IOException
{
out.close();
}
public byte[] getMac()
{
return mac.doFinal();
}
}
}