org.bouncycastle.asn1.cms.ecc.MQVuserKeyingMaterial 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.cms.ecc;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.DERTaggedObject;
import org.bouncycastle.asn1.cms.OriginatorPublicKey;
/**
* RFC 5753/3278: MQVuserKeyingMaterial object.
*
* MQVuserKeyingMaterial ::= SEQUENCE {
* ephemeralPublicKey OriginatorPublicKey,
* addedukm [0] EXPLICIT UserKeyingMaterial OPTIONAL }
*
*/
public class MQVuserKeyingMaterial
extends ASN1Object
{
private OriginatorPublicKey ephemeralPublicKey;
private ASN1OctetString addedukm;
public MQVuserKeyingMaterial(
OriginatorPublicKey ephemeralPublicKey,
ASN1OctetString addedukm)
{
if (ephemeralPublicKey == null)
{
throw new IllegalArgumentException("Ephemeral public key cannot be null");
}
this.ephemeralPublicKey = ephemeralPublicKey;
this.addedukm = addedukm;
}
private MQVuserKeyingMaterial(
ASN1Sequence seq)
{
if (seq.size() != 1 && seq.size() != 2)
{
throw new IllegalArgumentException("Sequence has incorrect number of elements");
}
this.ephemeralPublicKey = OriginatorPublicKey.getInstance(
seq.getObjectAt(0));
if (seq.size() > 1)
{
this.addedukm = ASN1OctetString.getInstance(
(ASN1TaggedObject)seq.getObjectAt(1), true);
}
}
/**
* Return an MQVuserKeyingMaterial object from a tagged object.
*
* @param obj the tagged object holding the object we want.
* @param explicit true if the object is meant to be explicitly
* tagged false otherwise.
* @throws IllegalArgumentException if the object held by the
* tagged object cannot be converted.
*/
public static MQVuserKeyingMaterial getInstance(
ASN1TaggedObject obj,
boolean explicit)
{
return getInstance(ASN1Sequence.getInstance(obj, explicit));
}
/**
* Return an MQVuserKeyingMaterial object from the given object.
*
* Accepted inputs:
*
* - null → null
*
- {@link MQVuserKeyingMaterial} object
*
- {@link org.bouncycastle.asn1.ASN1Sequence ASN1Sequence} with MQVuserKeyingMaterial inside it.
*
*
* @param obj the object we want converted.
* @throws IllegalArgumentException if the object cannot be converted.
*/
public static MQVuserKeyingMaterial getInstance(
Object obj)
{
if (obj instanceof MQVuserKeyingMaterial)
{
return (MQVuserKeyingMaterial)obj;
}
else if (obj != null)
{
return new MQVuserKeyingMaterial(ASN1Sequence.getInstance(obj));
}
return null;
}
public OriginatorPublicKey getEphemeralPublicKey()
{
return ephemeralPublicKey;
}
public ASN1OctetString getAddedukm()
{
return addedukm;
}
/**
* Produce an object suitable for an ASN1OutputStream.
*/
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(ephemeralPublicKey);
if (addedukm != null)
{
v.add(new DERTaggedObject(true, 0, addedukm));
}
return new DERSequence(v);
}
}