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

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

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 RecipientInfoGenerator
{
    /**
     * Generate a RecipientInfo object for the given key.
     * @param key 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 key, SecureRandom random,
        Provider prov) throws GeneralSecurityException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy