public class GMSSParameters
extends java.lang.Object
GMSSKeyPairGenerator| Constructor | Description |
|---|---|
GMSSParameters(int keySize) |
|
GMSSParameters(int layers,
int[] heightOfTrees,
int[] winternitzParameter,
int[] K) |
The constructor for the parameters of the GMSSKeyPairGenerator.
|
| Modifier and Type | Method | Description |
|---|---|---|
int[] |
getHeightOfTrees() |
Returns the array of height (for each layer) of the authentication trees
|
int[] |
getK() |
Returns the parameter K needed for authentication path computation
|
int |
getNumOfLayers() |
Returns the number of levels of the authentication trees.
|
int[] |
getWinternitzParameter() |
Returns the array of WinternitzParameter (for each layer) of the
authentication trees
|
public GMSSParameters(int layers,
int[] heightOfTrees,
int[] winternitzParameter,
int[] K)
throws java.lang.IllegalArgumentException
layers - the number of authentication tree layersheightOfTrees - the height of the authentication treeswinternitzParameter - the Winternitz Parameter 'w' of each layerK - parameter for authpath computationjava.lang.IllegalArgumentExceptionpublic GMSSParameters(int keySize)
throws java.lang.IllegalArgumentException
java.lang.IllegalArgumentExceptionpublic int getNumOfLayers()
public int[] getHeightOfTrees()
public int[] getWinternitzParameter()
public int[] getK()