org.bouncycastle.jcajce.spec.KEMExtractSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package org.bouncycastle.jcajce.spec;
import java.security.PrivateKey;
import java.security.spec.AlgorithmParameterSpec;
import org.bouncycastle.util.Arrays;
public class KEMExtractSpec
implements AlgorithmParameterSpec
{
private final PrivateKey privateKey;
private final byte[] encapsulation;
private final String keyAlgorithmName;
public KEMExtractSpec(PrivateKey privateKey, byte[] encapsulation, String keyAlgorithmName)
{
this.privateKey = privateKey;
this.encapsulation = Arrays.clone(encapsulation);
this.keyAlgorithmName = keyAlgorithmName;
}
public byte[] getEncapsulation()
{
return Arrays.clone(encapsulation);
}
public PrivateKey getPrivateKey()
{
return privateKey;
}
public String getKeyAlgorithmName()
{
return keyAlgorithmName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy