@@ -7,6 +7,7 @@ use crate::hypertree::HypertreeParams;
7
7
use crate :: wots:: WotsParams ;
8
8
use crate :: xmss:: XmssParams ;
9
9
use crate :: { ParameterSet , PkSeed , SkPrf , SkSeed } ;
10
+ use const_oid:: db:: fips205;
10
11
use digest:: { ExtendableOutput , Update } ;
11
12
use hybrid_array:: typenum:: consts:: { U16 , U30 , U32 } ;
12
13
use hybrid_array:: typenum:: { U24 , U34 , U39 , U42 , U47 , U49 } ;
@@ -146,6 +147,7 @@ impl ForsParams for Shake128s {
146
147
}
147
148
impl ParameterSet for Shake128s {
148
149
const NAME : & ' static str = "SLH-DSA-SHAKE-128s" ;
150
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_128_S ;
149
151
}
150
152
151
153
/// SHAKE256 at L1 security with fast signatures
@@ -168,6 +170,7 @@ impl ForsParams for Shake128f {
168
170
}
169
171
impl ParameterSet for Shake128f {
170
172
const NAME : & ' static str = "SLH-DSA-SHAKE-128f" ;
173
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_128_F ;
171
174
}
172
175
173
176
/// SHAKE256 at L3 security with small signatures
@@ -190,6 +193,7 @@ impl ForsParams for Shake192s {
190
193
}
191
194
impl ParameterSet for Shake192s {
192
195
const NAME : & ' static str = "SLH-DSA-SHAKE-192s" ;
196
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_192_S ;
193
197
}
194
198
195
199
/// SHAKE256 at L3 security with fast signatures
@@ -212,6 +216,7 @@ impl ForsParams for Shake192f {
212
216
}
213
217
impl ParameterSet for Shake192f {
214
218
const NAME : & ' static str = "SLH-DSA-SHAKE-192f" ;
219
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_192_F ;
215
220
}
216
221
217
222
/// SHAKE256 at L5 security with small signatures
@@ -234,6 +239,7 @@ impl ForsParams for Shake256s {
234
239
}
235
240
impl ParameterSet for Shake256s {
236
241
const NAME : & ' static str = "SLH-DSA-SHAKE-256s" ;
242
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_256_S ;
237
243
}
238
244
239
245
/// SHAKE256 at L5 security with fast signatures
@@ -256,6 +262,7 @@ impl ForsParams for Shake256f {
256
262
}
257
263
impl ParameterSet for Shake256f {
258
264
const NAME : & ' static str = "SLH-DSA-SHAKE-256f" ;
265
+ const ALGORITHM_OID : pkcs8:: ObjectIdentifier = fips205:: ID_SLH_DSA_SHAKE_256_F ;
259
266
}
260
267
261
268
#[ cfg( test) ]
0 commit comments