aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java
deleted file mode 100644
index 12b8c3621..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/jcajce/JcePasswordAuthenticatedRecipient.java
+++ /dev/null
@@ -1,54 +0,0 @@
-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;
-import org.spongycastle.operator.jcajce.JceGenericKey;
-
-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 JceGenericKey(contentMacAlgorithm, secretKey);
- }
-
- public OutputStream getOutputStream()
- {
- return new MacOutputStream(dataMac);
- }
-
- public byte[] getMac()
- {
- return dataMac.doFinal();
- }
- });
- }
-}