All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.cms.IntRecipientInfoGenerator Maven / Gradle / Ivy

The newest version!
package org.bouncycastle.cms;

import java.security.GeneralSecurityException;
import java.security.Provider;
import java.security.SecureRandom;

import javax.crypto.SecretKey;

import org.bouncycastle.asn1.cms.RecipientInfo;

interface IntRecipientInfoGenerator
{
    /**
     * Generate a RecipientInfo object for the given key.
     * @param contentEncryptionKey the SecretKey to encrypt
     * @param random a source of randomness
     * @param prov the default provider to use
     * @return a RecipientInfo object for the given key
     * @throws GeneralSecurityException
     */
    RecipientInfo generate(SecretKey contentEncryptionKey, SecureRandom random,
        Provider prov) throws GeneralSecurityException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy