![JAR search and dependency download from the Maven repository](/logo.png)
org.spongycastle.cms.jcajce.JcePasswordAuthenticatedRecipient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scprov-jdk15 Show documentation
Show all versions of scprov-jdk15 Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle intended for Android.
Android ships with a stripped-down version of Bouncy Castle - this causes classloader collisions if you try to add
an alternative (updated/complete) Bouncy Castle jar.
This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
package org.spongycastle.cms.jcajce;
import java.io.OutputStream;
import java.security.Key;
import javax.crypto.Mac;
import org.spongycastle.asn1.x509.AlgorithmIdentifier;
import org.spongycastle.cms.CMSException;
import org.spongycastle.cms.RecipientOperator;
import org.spongycastle.jcajce.io.MacOutputStream;
import org.spongycastle.operator.GenericKey;
import org.spongycastle.operator.MacCalculator;
public class JcePasswordAuthenticatedRecipient
extends JcePasswordRecipient
{
public JcePasswordAuthenticatedRecipient(char[] password)
{
super(password);
}
public RecipientOperator getRecipientOperator(AlgorithmIdentifier keyEncryptionAlgorithm, final AlgorithmIdentifier contentMacAlgorithm, byte[] derivedKey, byte[] encryptedContentEncryptionKey)
throws CMSException
{
final Key secretKey = extractSecretKey(keyEncryptionAlgorithm, contentMacAlgorithm, derivedKey, encryptedContentEncryptionKey);
final Mac dataMac = helper.createContentMac(secretKey, contentMacAlgorithm);
return new RecipientOperator(new MacCalculator()
{
public AlgorithmIdentifier getAlgorithmIdentifier()
{
return contentMacAlgorithm;
}
public GenericKey getKey()
{
return new GenericKey(secretKey);
}
public OutputStream getOutputStream()
{
return new MacOutputStream(dataMac);
}
public byte[] getMac()
{
return dataMac.doFinal();
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy