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

org.bouncycastle.jcajce.spec.IESKEMParameterSpec Maven / Gradle / Ivy

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up. Note: this package includes the NTRU encryption algorithms.

There is a newer version: 1.77
Show newest version
package org.bouncycastle.jcajce.spec;

import java.security.spec.AlgorithmParameterSpec;

import org.bouncycastle.util.Arrays;

/**
 * Parameter spec for an integrated encryptor KEM, as in IEEE_Std_1609_2
 */
public class IESKEMParameterSpec
    implements AlgorithmParameterSpec
{
    private final byte[] recipientInfo;
    private final boolean usePointCompression;


    /**
     * Set the IESKEM parameters.
     *
     * @param recipientInfo recipient data.
     */
    public IESKEMParameterSpec(
        byte[] recipientInfo)
    {
        this(recipientInfo, false);
    }

    /**
     * Set the IESKEM parameters - specifying point compression.
     *
     * @param recipientInfo recipient data.
     * @param usePointCompression use point compression on output (ignored on input).
     */
    public IESKEMParameterSpec(
        byte[] recipientInfo,
        boolean usePointCompression)
    {
        this.recipientInfo = Arrays.clone(recipientInfo);
        this.usePointCompression = usePointCompression;
    }

    public byte[] getRecipientInfo()
    {
        return Arrays.clone(recipientInfo);
    }

    public boolean hasUsePointCompression()
    {
        return usePointCompression;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy