View Javadoc
1   /*
2    * GordianKnot: Security Suite
3    * Copyright 2026. Tony Washer
4    *
5    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6    * use this file except in compliance with the License.  You may obtain a copy
7    * of the License at
8    *
9    *   http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
14   * License for the specific language governing permissions and limitations under
15   * the License.
16   */
17  
18  package io.github.tonywasher.joceanus.gordianknot.api.keypair.spec;
19  
20  /**
21   * SphincsPlus KeySpecs.
22   */
23  public enum GordianSLHDSASpec {
24      /**
25       * SHA2 128f.
26       */
27      SHA128F,
28  
29      /**
30       * SHA2 128s.
31       */
32      SHA128S,
33  
34      /**
35       * SHA2 192f.
36       */
37      SHA192F,
38  
39      /**
40       * SHA2 192s.
41       */
42      SHA192S,
43  
44      /**
45       * SHA2 256f.
46       */
47      SHA256F,
48  
49      /**
50       * SHA2 256s.
51       */
52      SHA256S,
53  
54      /**
55       * SHAKE 128f.
56       */
57      SHAKE128F,
58  
59      /**
60       * SHAKE 128s.
61       */
62      SHAKE128S,
63  
64      /**
65       * SHAKE 192f.
66       */
67      SHAKE192F,
68  
69      /**
70       * SHAKE 192s.
71       */
72      SHAKE192S,
73  
74      /**
75       * SHAKE 256f.
76       */
77      SHAKE256F,
78  
79      /**
80       * SHAKE 256s.
81       */
82      SHAKE256S,
83  
84      /**
85       * SHA2 128f hash.
86       */
87      SHA128F_HASH,
88  
89      /**
90       * SHA2 128s hash.
91       */
92      SHA128S_HASH,
93  
94      /**
95       * SHA2 192f hash.
96       */
97      SHA192F_HASH,
98  
99      /**
100      * SHA2 192s hash.
101      */
102     SHA192S_HASH,
103 
104     /**
105      * SHA2 256f hash.
106      */
107     SHA256F_HASH,
108 
109     /**
110      * SHA2 256s hash.
111      */
112     SHA256S_HASH,
113 
114     /**
115      * SHAKE 128f hash.
116      */
117     SHAKE128F_HASH,
118 
119     /**
120      * SHAKE 128s hash.
121      */
122     SHAKE128S_HASH,
123 
124     /**
125      * SHAKE 192f hash.
126      */
127     SHAKE192F_HASH,
128 
129     /**
130      * SHAKE 192s hash.
131      */
132     SHAKE192S_HASH,
133 
134     /**
135      * SHAKE 256f hash.
136      */
137     SHAKE256F_HASH,
138 
139     /**
140      * SHAKE 256s hash.
141      */
142     SHAKE256S_HASH;
143 }