Place holder BDS for when state is exhausted. @param params tree parameters @param index the index that has been reached.
(XMSSParameters params, int maxIndex, int index)
| 45 | * @param index the index that has been reached. |
| 46 | */ |
| 47 | BDS(XMSSParameters params, int maxIndex, int index) |
| 48 | { |
| 49 | this(params.getWOTSPlus(), params.getHeight(), params.getK(), index); |
| 50 | this.maxIndex = maxIndex; |
| 51 | this.index = index; |
| 52 | this.used = true; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Set up constructor. |
nothing calls this directly
no test coverage detected