com.fitbur.bouncycastle.cms.jcajce.JcaJceExtHelper Maven / Gradle / Ivy
package com.fitbur.bouncycastle.cms.jcajce;
import java.security.PrivateKey;
import javax.crypto.SecretKey;
import com.fitbur.bouncycastle.asn1.x509.AlgorithmIdentifier;
import com.fitbur.bouncycastle.jcajce.util.JcaJceHelper;
import com.fitbur.bouncycastle.operator.SymmetricKeyUnwrapper;
import com.fitbur.bouncycastle.operator.jcajce.JceAsymmetricKeyUnwrapper;
public interface JcaJceExtHelper
extends JcaJceHelper
{
JceAsymmetricKeyUnwrapper createAsymmetricUnwrapper(AlgorithmIdentifier keyEncryptionAlgorithm, PrivateKey keyEncryptionKey);
SymmetricKeyUnwrapper createSymmetricUnwrapper(AlgorithmIdentifier keyEncryptionAlgorithm, SecretKey keyEncryptionKey);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy