
org.spongycastle.asn1.smime.SMIMEEncryptionKeyPreferenceAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
package org.spongycastle.asn1.smime;
import org.spongycastle.asn1.ASN1OctetString;
import org.spongycastle.asn1.DERSet;
import org.spongycastle.asn1.DERTaggedObject;
import org.spongycastle.asn1.cms.Attribute;
import org.spongycastle.asn1.cms.IssuerAndSerialNumber;
import org.spongycastle.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)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy