public class GMSSParameters extends Object
GMSSKeyPairGenerator
Constructor and 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 and 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 IllegalArgumentException
layers
- the number of authentication tree layersheightOfTrees
- the height of the authentication treeswinternitzParameter
- the Winternitz Parameter 'w' of each layerK
- parameter for authpath computationIllegalArgumentException
public GMSSParameters(int keySize) throws IllegalArgumentException
IllegalArgumentException
public int getNumOfLayers()
public int[] getHeightOfTrees()
public int[] getWinternitzParameter()
public int[] getK()
Copyright © 2016 BouncyCastle.org. All rights reserved.