org.bouncycastle.cms.CMSAuthEnvelopedGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.cms;
import java.util.ArrayList;
import java.util.List;
import org.bouncycastle.asn1.cms.OriginatorInfo;
/**
* General class for generating a CMS enveloped-data message.
*/
public class CMSAuthEnvelopedGenerator
extends CMSEnvelopedGenerator
{
final List recipientInfoGenerators = new ArrayList();
protected CMSAttributeTableGenerator authAttrsGenerator = null;
protected CMSAttributeTableGenerator unauthAttrsGenerator = null;
protected OriginatorInfo originatorInfo;
/**
* base constructor
*/
protected CMSAuthEnvelopedGenerator()
{
}
public void setAuthenticatedAttributeGenerator(CMSAttributeTableGenerator protectedAttributeGenerator)
{
this.authAttrsGenerator = protectedAttributeGenerator;
}
public void setUnauthenticatedAttributeGenerator(CMSAttributeTableGenerator unauthenticatedAttributeGenerator)
{
this.unauthAttrsGenerator = unauthenticatedAttributeGenerator;
}
public void setOriginatorInfo(OriginatorInformation originatorInfo)
{
this.originatorInfo = originatorInfo.toASN1Structure();
}
/**
* Add a generator to produce the recipient info required.
*
* @param recipientGenerator a generator of a recipient info object.
*/
public void addRecipientInfoGenerator(RecipientInfoGenerator recipientGenerator)
{
recipientInfoGenerators.add(recipientGenerator);
}
}