org.bouncycastle.asn1.smime.SMIMEEncryptionKeyPreferenceAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bc-fips Show documentation
Show all versions of bc-fips Show documentation
The FIPS 140-3 Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms certified to FIPS 140-3 level 1. This jar contains JCE provider and low-level API for the BC-FJA version 2.0.0, FIPS Certificate #4743. Please see certificate for certified platform details.
/***************************************************************/
/****** DO NOT EDIT THIS CLASS bc-java SOURCE FILE ******/
/***************************************************************/
package org.bouncycastle.asn1.smime;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.DERSet;
import org.bouncycastle.asn1.DERTaggedObject;
import org.bouncycastle.asn1.cms.Attribute;
import org.bouncycastle.asn1.cms.IssuerAndSerialNumber;
import org.bouncycastle.asn1.cms.RecipientKeyIdentifier;
/**
* The SMIMEEncryptionKeyPreference object.
*
* SMIMEEncryptionKeyPreference ::= CHOICE {
* issuerAndSerialNumber [0] IssuerAndSerialNumber,
* receipentKeyId [1] RecipientKeyIdentifier,
* subjectAltKeyIdentifier [2] SubjectKeyIdentifier
* }
*
*/
public class SMIMEEncryptionKeyPreferenceAttribute
extends Attribute
{
public SMIMEEncryptionKeyPreferenceAttribute(
IssuerAndSerialNumber issAndSer)
{
super(SMIMEAttributes.encrypKeyPref,
new DERSet(new DERTaggedObject(false, 0, issAndSer)));
}
public SMIMEEncryptionKeyPreferenceAttribute(
RecipientKeyIdentifier rKeyId)
{
super(SMIMEAttributes.encrypKeyPref,
new DERSet(new DERTaggedObject(false, 1, rKeyId)));
}
/**
* @param sKeyId the subjectKeyIdentifier value (normally the X.509 one)
*/
public SMIMEEncryptionKeyPreferenceAttribute(
ASN1OctetString sKeyId)
{
super(SMIMEAttributes.encrypKeyPref,
new DERSet(new DERTaggedObject(false, 2, sKeyId)));
}
}