org.bouncycastle.pqc.crypto.frodo.FrodoKEMGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.pqc.crypto.frodo;
import java.security.SecureRandom;
import org.bouncycastle.crypto.EncapsulatedSecretGenerator;
import org.bouncycastle.crypto.SecretWithEncapsulation;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
import org.bouncycastle.pqc.crypto.util.SecretWithEncapsulationImpl;
public class FrodoKEMGenerator
implements EncapsulatedSecretGenerator
{
// the source of randomness
private final SecureRandom sr;
public FrodoKEMGenerator(SecureRandom random)
{
this.sr = random;
}
public SecretWithEncapsulation generateEncapsulated(AsymmetricKeyParameter recipientKey)
{
FrodoPublicKeyParameters key = (FrodoPublicKeyParameters)recipientKey;
FrodoEngine engine = key.getParameters().getEngine();
byte[] cipher_text = new byte[engine.getCipherTextSize()];
byte[] sessionKey = new byte[engine.getSessionKeySize()];
engine.kem_enc(cipher_text, sessionKey, key.getPublicKey(), sr);
return new SecretWithEncapsulationImpl(sessionKey, cipher_text);
}
}