Bouncy Castle Cryptography Library 1.77.0

org.bouncycastle.jcajce.spec
Class IESKEMParameterSpec

java.lang.Object
  |
  +--org.bouncycastle.jcajce.spec.IESKEMParameterSpec
All Implemented Interfaces:
java.security.spec.AlgorithmParameterSpec

public class IESKEMParameterSpec
extends java.lang.Object
implements java.security.spec.AlgorithmParameterSpec

Parameter spec for an integrated encryptor KEM, as in IEEE_Std_1609_2


Constructor Summary
IESKEMParameterSpec(byte[] recipientInfo)
          Set the IESKEM parameters.
IESKEMParameterSpec(byte[] recipientInfo, boolean usePointCompression)
          Set the IESKEM parameters - specifying point compression.
 
Method Summary
 byte[] getRecipientInfo()
           
 boolean hasUsePointCompression()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IESKEMParameterSpec

public IESKEMParameterSpec(byte[] recipientInfo)
Set the IESKEM parameters.
Parameters:
recipientInfo - recipient data.

IESKEMParameterSpec

public IESKEMParameterSpec(byte[] recipientInfo,
                           boolean usePointCompression)
Set the IESKEM parameters - specifying point compression.
Parameters:
recipientInfo - recipient data.
usePointCompression - use point compression on output (ignored on input).
Method Detail

getRecipientInfo

public byte[] getRecipientInfo()

hasUsePointCompression

public boolean hasUsePointCompression()

Bouncy Castle Cryptography Library 1.77.0