blob: 9dec6853932deaa345c20b7e3306f403b878e670 [file] [log] [blame]
package org.bouncycastle.pqc.crypto.rainbow;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
public class RainbowKeyParameters
extends AsymmetricKeyParameter
{
private int docLength;
public RainbowKeyParameters(
boolean isPrivate,
int docLength)
{
super(isPrivate);
this.docLength = docLength;
}
/**
* @return the docLength
*/
public int getDocLength()
{
return this.docLength;
}
}