/src/openssl/crypto/slh_dsa/slh_dsa_key.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2024-2026 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <string.h> |
11 | | #include <openssl/err.h> |
12 | | #include <openssl/core_dispatch.h> |
13 | | #include <openssl/core_names.h> |
14 | | #include <openssl/params.h> |
15 | | #include <openssl/rand.h> |
16 | | #include <openssl/proverr.h> |
17 | | #include "slh_dsa_local.h" |
18 | | #include "slh_dsa_key.h" |
19 | | #include "internal/encoder.h" |
20 | | |
21 | | static int slh_dsa_compute_pk_root(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out, int verify); |
22 | | |
23 | | static void slh_dsa_key_hash_cleanup(SLH_DSA_KEY *key) |
24 | 0 | { |
25 | 0 | OPENSSL_free(key->propq); |
26 | 0 | EVP_MD_free(key->md_sha512); |
27 | 0 | EVP_MD_free(key->md); |
28 | 0 | EVP_MAC_free(key->hmac); |
29 | 0 | key->md = NULL; |
30 | 0 | key->md_sha512 = NULL; |
31 | 0 | } |
32 | | |
33 | | static int slh_dsa_key_hash_init(SLH_DSA_KEY *key) |
34 | 0 | { |
35 | 0 | int is_shake = key->params->is_shake; |
36 | 0 | int security_category = key->params->security_category; |
37 | 0 | const char *digest_alg = is_shake ? "SHAKE-256" : "SHA2-256"; |
38 | |
|
39 | 0 | key->md = EVP_MD_fetch(key->libctx, digest_alg, key->propq); |
40 | 0 | if (key->md == NULL) |
41 | 0 | return 0; |
42 | | /* |
43 | | * SHA2 algorithm(s) require SHA256 + HMAC_SHA(X) & MGF1(SHAX) |
44 | | * SHAKE algorithm(s) use SHAKE for all functions. |
45 | | */ |
46 | 0 | if (is_shake == 0) { |
47 | 0 | if (security_category != 1) { |
48 | | /* Security categories 3 & 5 also need SHA-512 */ |
49 | 0 | key->md_sha512 = EVP_MD_fetch(key->libctx, "SHA2-512", key->propq); |
50 | 0 | if (key->md_sha512 == NULL) |
51 | 0 | goto err; |
52 | 0 | } |
53 | 0 | key->hmac = EVP_MAC_fetch(key->libctx, "HMAC", key->propq); |
54 | 0 | if (key->hmac == NULL) |
55 | 0 | goto err; |
56 | 0 | } |
57 | 0 | key->adrs_func = ossl_slh_get_adrs_fn(is_shake == 0); |
58 | 0 | key->hash_func = ossl_slh_get_hash_fn(is_shake, security_category); |
59 | 0 | return 1; |
60 | 0 | err: |
61 | 0 | return 0; |
62 | 0 | } |
63 | | |
64 | | static void slh_dsa_key_hash_dup(SLH_DSA_KEY *dst, const SLH_DSA_KEY *src) |
65 | 0 | { |
66 | 0 | if (src->md_sha512 != NULL) |
67 | 0 | EVP_MD_up_ref(src->md_sha512); |
68 | 0 | if (src->md != NULL) |
69 | 0 | EVP_MD_up_ref(src->md); |
70 | 0 | if (src->hmac != NULL) |
71 | 0 | EVP_MAC_up_ref(src->hmac); |
72 | 0 | } |
73 | | |
74 | | /** |
75 | | * @brief Return the libctx associated with a SLH_DSA_KEY object |
76 | | * |
77 | | * @param key A SLH_DSA_KEY to extract the libctx from. |
78 | | * @returns The new OSSL_LIB_CTX object on success, or NULL failure |
79 | | */ |
80 | | OSSL_LIB_CTX *ossl_slh_dsa_key_get0_libctx(const SLH_DSA_KEY *key) |
81 | 0 | { |
82 | 0 | return key != NULL ? key->libctx : NULL; |
83 | 0 | } |
84 | | |
85 | | /** |
86 | | * @brief Create a new SLH_DSA_KEY object |
87 | | * |
88 | | * @param libctx A OSSL_LIB_CTX object used for fetching algorithms. |
89 | | * @param propq The property query used for fetching algorithms |
90 | | * @param alg The algorithm name associated with the key type |
91 | | * @returns The new SLH_DSA_KEY object on success, or NULL on malloc failure |
92 | | */ |
93 | | SLH_DSA_KEY *ossl_slh_dsa_key_new(OSSL_LIB_CTX *libctx, const char *propq, |
94 | | const char *alg) |
95 | 0 | { |
96 | 0 | SLH_DSA_KEY *ret; |
97 | 0 | const SLH_DSA_PARAMS *params = ossl_slh_dsa_params_get(alg); |
98 | |
|
99 | 0 | if (params == NULL) |
100 | 0 | return NULL; |
101 | | |
102 | 0 | ret = OPENSSL_zalloc(sizeof(*ret)); |
103 | 0 | if (ret != NULL) { |
104 | 0 | ret->libctx = libctx; |
105 | 0 | ret->params = params; |
106 | 0 | if (propq != NULL) { |
107 | 0 | ret->propq = OPENSSL_strdup(propq); |
108 | 0 | if (ret->propq == NULL) |
109 | 0 | goto err; |
110 | 0 | } |
111 | 0 | if (!slh_dsa_key_hash_init(ret)) |
112 | 0 | goto err; |
113 | 0 | } |
114 | 0 | return ret; |
115 | 0 | err: |
116 | 0 | ossl_slh_dsa_key_free(ret); |
117 | 0 | return NULL; |
118 | 0 | } |
119 | | |
120 | | /** |
121 | | * @brief Destroy a SLH_DSA_KEY object |
122 | | */ |
123 | | void ossl_slh_dsa_key_free(SLH_DSA_KEY *key) |
124 | 0 | { |
125 | 0 | if (key == NULL) |
126 | 0 | return; |
127 | | |
128 | 0 | slh_dsa_key_hash_cleanup(key); |
129 | 0 | OPENSSL_cleanse(&key->priv, sizeof(key->priv) >> 1); |
130 | 0 | OPENSSL_free(key); |
131 | 0 | } |
132 | | |
133 | | /** |
134 | | * @brief Duplicate a key |
135 | | * |
136 | | * @param src A SLH_DSA_KEY object to copy |
137 | | * @param selection to select public and/or private components. Selecting the |
138 | | * private key will also select the public key |
139 | | * @returns The duplicated key, or NULL on failure. |
140 | | */ |
141 | | SLH_DSA_KEY *ossl_slh_dsa_key_dup(const SLH_DSA_KEY *src, int selection) |
142 | 0 | { |
143 | 0 | SLH_DSA_KEY *ret = NULL; |
144 | |
|
145 | 0 | if (src == NULL) |
146 | 0 | return NULL; |
147 | | |
148 | 0 | ret = OPENSSL_zalloc(sizeof(*ret)); |
149 | 0 | if (ret != NULL) { |
150 | 0 | *ret = *src; /* this copies everything including the keydata in priv[] */ |
151 | 0 | ret->propq = NULL; |
152 | 0 | ret->pub = NULL; |
153 | 0 | ret->has_priv = 0; |
154 | 0 | slh_dsa_key_hash_dup(ret, src); |
155 | 0 | if (src->propq != NULL) { |
156 | 0 | ret->propq = OPENSSL_strdup(src->propq); |
157 | 0 | if (ret->propq == NULL) |
158 | 0 | goto err; |
159 | 0 | } |
160 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { |
161 | | /* The public components are present if the private key is present */ |
162 | 0 | if (src->pub != NULL) |
163 | 0 | ret->pub = SLH_DSA_PUB(ret); |
164 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) |
165 | 0 | ret->has_priv = src->has_priv; |
166 | 0 | } |
167 | 0 | } |
168 | 0 | return ret; |
169 | 0 | err: |
170 | 0 | ossl_slh_dsa_key_free(ret); |
171 | 0 | return NULL; |
172 | 0 | } |
173 | | |
174 | | /** |
175 | | * @brief Are 2 keys equal? |
176 | | * |
177 | | * To be equal the keys must have the same key data and algorithm name. |
178 | | * |
179 | | * @param key1 A SLH_DSA_KEY object |
180 | | * @param key2 A SLH_DSA_KEY object |
181 | | * @param selection to select public and/or private component comparison. |
182 | | * @returns 1 if the keys are equal otherwise it returns 0. |
183 | | */ |
184 | | int ossl_slh_dsa_key_equal(const SLH_DSA_KEY *key1, const SLH_DSA_KEY *key2, |
185 | | int selection) |
186 | 0 | { |
187 | 0 | int key_checked = 0; |
188 | | |
189 | | /* The parameter sets must match - i.e. The same algorithm name */ |
190 | 0 | if (key1->params != key2->params) |
191 | 0 | return 0; |
192 | | |
193 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { |
194 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) { |
195 | 0 | if (key1->pub != NULL && key2->pub != NULL) { |
196 | 0 | if (memcmp(key1->pub, key2->pub, key1->params->pk_len) != 0) |
197 | 0 | return 0; |
198 | 0 | key_checked = 1; |
199 | 0 | } |
200 | 0 | } |
201 | 0 | if (!key_checked |
202 | 0 | && (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { |
203 | 0 | if (key1->has_priv && key2->has_priv) { |
204 | 0 | if (CRYPTO_memcmp(key1->priv, key2->priv, |
205 | 0 | key1->params->pk_len) |
206 | 0 | != 0) |
207 | 0 | return 0; |
208 | 0 | key_checked = 1; |
209 | 0 | } |
210 | 0 | } |
211 | 0 | return key_checked; |
212 | 0 | } |
213 | 0 | return 1; |
214 | 0 | } |
215 | | |
216 | | int ossl_slh_dsa_key_has(const SLH_DSA_KEY *key, int selection) |
217 | 0 | { |
218 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { |
219 | 0 | if (key->pub == NULL) |
220 | 0 | return 0; /* No public key */ |
221 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0 |
222 | 0 | && key->has_priv == 0) |
223 | 0 | return 0; /* No private key */ |
224 | 0 | return 1; |
225 | 0 | } |
226 | 0 | return 0; |
227 | 0 | } |
228 | | |
229 | | int ossl_slh_dsa_key_pairwise_check(const SLH_DSA_KEY *key) |
230 | 0 | { |
231 | 0 | int ret; |
232 | 0 | SLH_DSA_HASH_CTX *ctx = NULL; |
233 | |
|
234 | 0 | if (key->pub == NULL || key->has_priv == 0) |
235 | 0 | return 0; |
236 | | |
237 | 0 | ctx = ossl_slh_dsa_hash_ctx_new(key); |
238 | 0 | if (ctx == NULL) |
239 | 0 | return 0; |
240 | 0 | ret = slh_dsa_compute_pk_root(ctx, (SLH_DSA_KEY *)key, 1); |
241 | 0 | ossl_slh_dsa_hash_ctx_free(ctx); |
242 | 0 | return ret; |
243 | 0 | } |
244 | | |
245 | | void ossl_slh_dsa_key_reset(SLH_DSA_KEY *key) |
246 | 0 | { |
247 | 0 | key->pub = NULL; |
248 | 0 | if (key->has_priv) { |
249 | 0 | key->has_priv = 0; |
250 | 0 | OPENSSL_cleanse(key->priv, sizeof(key->priv)); |
251 | 0 | } |
252 | 0 | } |
253 | | |
254 | | /** |
255 | | * @brief Load a SLH_DSA key from raw data. |
256 | | * |
257 | | * @param key An SLH_DSA key to load into |
258 | | * @param params An array of parameters containing key data. |
259 | | * @param include_private Set to 1 to optionally include the private key data |
260 | | * if it exists. |
261 | | * @returns 1 on success, or 0 on failure. |
262 | | */ |
263 | | int ossl_slh_dsa_key_fromdata(SLH_DSA_KEY *key, const OSSL_PARAM *param_pub, |
264 | | const OSSL_PARAM *param_priv, |
265 | | int include_private) |
266 | 0 | { |
267 | 0 | size_t priv_len, key_len, data_len = 0; |
268 | 0 | void *p; |
269 | |
|
270 | 0 | if (key == NULL) |
271 | 0 | return 0; |
272 | | |
273 | | /* The private key consists of 4 elements SK_SEED, SK_PRF, PK_SEED and PK_ROOT */ |
274 | 0 | priv_len = ossl_slh_dsa_key_get_priv_len(key); |
275 | | /* The size of either SK_SEED + SK_PRF OR PK_SEED + PK_ROOT */ |
276 | 0 | key_len = priv_len >> 1; |
277 | | |
278 | | /* Private key is optional */ |
279 | 0 | if (include_private) { |
280 | 0 | if (param_priv != NULL) { |
281 | 0 | p = key->priv; |
282 | 0 | if (!OSSL_PARAM_get_octet_string(param_priv, &p, priv_len, &data_len)) |
283 | 0 | return 0; |
284 | | /* If the data read includes all 4 elements then we are finished */ |
285 | 0 | if (data_len == priv_len) { |
286 | 0 | key->has_priv = 1; |
287 | 0 | key->pub = SLH_DSA_PUB(key); |
288 | 0 | return 1; |
289 | 0 | } |
290 | | /* Otherwise it must be just SK_SEED + SK_PRF */ |
291 | 0 | if (data_len != key_len) |
292 | 0 | goto err; |
293 | 0 | key->has_priv = 1; |
294 | 0 | } |
295 | 0 | } |
296 | | /* |
297 | | * In the case where the passed in private key does not contain the public key |
298 | | * there MUST be a separate public key, since the private key cannot exist |
299 | | * without the public key elements. NOTE that this does not accept half of |
300 | | * the public key, (Keygen must be used for this case currently). |
301 | | */ |
302 | 0 | p = SLH_DSA_PUB(key); |
303 | 0 | if (param_pub == NULL |
304 | 0 | || !OSSL_PARAM_get_octet_string(param_pub, &p, key_len, &data_len) |
305 | 0 | || data_len != key_len) |
306 | 0 | goto err; |
307 | 0 | key->pub = p; |
308 | 0 | return 1; |
309 | 0 | err: |
310 | 0 | ossl_slh_dsa_key_reset(key); |
311 | 0 | return 0; |
312 | 0 | } |
313 | | |
314 | | /** |
315 | | * Generate the public key root from private key (seed and prf) and public key seed. |
316 | | * See FIPS 205 Section 9.1 Algorithm 18 |
317 | | * |
318 | | * @param ctx Contains SLH_DSA algorithm functions and constants. |
319 | | * @param out An SLH_DSA key containing the private key (seed and prf) and public key seed. |
320 | | * The public root key is written to this key. |
321 | | * @param validate If set to 1 the computed public key is not written to the key, |
322 | | * but will be compared to the existing value. |
323 | | * @returns 1 if the root key is generated or compared successfully, or 0 on error. |
324 | | */ |
325 | | static int slh_dsa_compute_pk_root(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out, |
326 | | int validate) |
327 | 0 | { |
328 | 0 | const SLH_DSA_KEY *key = ctx->key; |
329 | 0 | SLH_ADRS_FUNC_DECLARE(key, adrsf); |
330 | 0 | SLH_ADRS_DECLARE(adrs); |
331 | 0 | const SLH_DSA_PARAMS *params = key->params; |
332 | 0 | size_t n = params->n; |
333 | 0 | uint8_t pk_root[SLH_DSA_MAX_N], *dst; |
334 | |
|
335 | 0 | adrsf->zero(adrs); |
336 | 0 | adrsf->set_layer_address(adrs, params->d - 1); |
337 | |
|
338 | 0 | dst = validate ? pk_root : SLH_DSA_PK_ROOT(out); |
339 | | |
340 | | /* Generate the ROOT public key */ |
341 | 0 | return ossl_slh_xmss_node(ctx, SLH_DSA_SK_SEED(key), 0, params->hm, |
342 | 0 | SLH_DSA_PK_SEED(key), adrs, dst, n) |
343 | 0 | && (validate == 0 || memcmp(dst, SLH_DSA_PK_ROOT(out), n) == 0); |
344 | 0 | } |
345 | | |
346 | | /** |
347 | | * @brief Generate a SLH_DSA keypair. The private key seed and prf as well as the |
348 | | * public key seed are generated using an approved DRBG's. The public key root is |
349 | | * calculated using these generated values. |
350 | | * See FIPS 205 Section 10.1 Algorithm 21 |
351 | | * |
352 | | * @param ctx Contains SLH_DSA algorithm functions and constants |
353 | | * @param out An SLH_DSA key to write key pair data to. |
354 | | * @param lib_ctx A library context for fetching RAND algorithms |
355 | | * @param entropy Optional entropy to use instead of using a DRBG. |
356 | | * Required for ACVP testing. It may be NULL. |
357 | | * @param entropy_len the size of |entropy|. If set it must be at least 3 * |n|. |
358 | | * @returns 1 if the key is generated or 0 otherwise. |
359 | | */ |
360 | | int ossl_slh_dsa_generate_key(SLH_DSA_HASH_CTX *ctx, SLH_DSA_KEY *out, |
361 | | OSSL_LIB_CTX *lib_ctx, |
362 | | const uint8_t *entropy, size_t entropy_len) |
363 | 0 | { |
364 | 0 | size_t n = out->params->n; |
365 | 0 | size_t secret_key_len = 2 * n; /* The length of SK_SEED + SK_PRF */ |
366 | 0 | size_t pk_seed_len = n; /* The length of PK_SEED */ |
367 | 0 | size_t entropy_len_expected = secret_key_len + pk_seed_len; |
368 | 0 | uint8_t *priv = SLH_DSA_PRIV(out); |
369 | 0 | uint8_t *pub = SLH_DSA_PUB(out); |
370 | |
|
371 | 0 | if (entropy != NULL && entropy_len != 0) { |
372 | 0 | if (entropy_len != entropy_len_expected) |
373 | 0 | goto err; |
374 | 0 | memcpy(priv, entropy, entropy_len_expected); |
375 | 0 | } else { |
376 | 0 | if (RAND_priv_bytes_ex(lib_ctx, priv, secret_key_len, 0) <= 0 |
377 | 0 | || RAND_bytes_ex(lib_ctx, pub, pk_seed_len, 0) <= 0) |
378 | 0 | goto err; |
379 | 0 | } |
380 | | |
381 | 0 | if (!ossl_slh_dsa_hash_ctx_prehash_pk_seed(ctx, pub, pk_seed_len) |
382 | 0 | || !slh_dsa_compute_pk_root(ctx, out, 0)) |
383 | 0 | goto err; |
384 | 0 | out->pub = pub; |
385 | 0 | out->has_priv = 1; |
386 | 0 | return 1; |
387 | 0 | err: |
388 | 0 | out->pub = NULL; |
389 | 0 | out->has_priv = 0; |
390 | 0 | OPENSSL_cleanse(priv, secret_key_len); |
391 | 0 | return 0; |
392 | 0 | } |
393 | | |
394 | | /** |
395 | | * @brief This is used when a SLH key is used for an operation. |
396 | | * This checks that the algorithm is the same (i.e. uses the same parameters) |
397 | | * |
398 | | * @param ctx Contains SLH_DSA algorithm functions and constants to be used for |
399 | | * an operation. |
400 | | * @param key A SLH_DSA key to use for an operation. |
401 | | * |
402 | | * @returns 1 if the algorithm matches, or 0 otherwise. |
403 | | */ |
404 | | int ossl_slh_dsa_key_type_matches(const SLH_DSA_KEY *key, const char *alg) |
405 | 0 | { |
406 | 0 | return (OPENSSL_strcasecmp(key->params->alg, alg) == 0); |
407 | 0 | } |
408 | | |
409 | | /* Returns the public key data or NULL if there is no public key */ |
410 | | const uint8_t *ossl_slh_dsa_key_get_pub(const SLH_DSA_KEY *key) |
411 | 0 | { |
412 | 0 | return key->pub; |
413 | 0 | } |
414 | | |
415 | | /* Returns the constant 2 * |n| which is the size of PK_SEED + PK_ROOT */ |
416 | | size_t ossl_slh_dsa_key_get_pub_len(const SLH_DSA_KEY *key) |
417 | 0 | { |
418 | 0 | return 2 * key->params->n; |
419 | 0 | } |
420 | | |
421 | | /* Returns the private key data or NULL if there is no private key */ |
422 | | const uint8_t *ossl_slh_dsa_key_get_priv(const SLH_DSA_KEY *key) |
423 | 0 | { |
424 | 0 | return key->has_priv ? key->priv : NULL; |
425 | 0 | } |
426 | | |
427 | | /* |
428 | | * Returns the constant 4 * |n| which is the size of both |
429 | | * the private and public key components. |
430 | | * SK_SEED + SK_ROOT + PK_SEED + PK_ROOT |
431 | | */ |
432 | | size_t ossl_slh_dsa_key_get_priv_len(const SLH_DSA_KEY *key) |
433 | 0 | { |
434 | 0 | return 4 * key->params->n; |
435 | 0 | } |
436 | | |
437 | | size_t ossl_slh_dsa_key_get_n(const SLH_DSA_KEY *key) |
438 | 0 | { |
439 | 0 | return key->params->n; |
440 | 0 | } |
441 | | |
442 | | int ossl_slh_dsa_key_get_security_category(const SLH_DSA_KEY *key) |
443 | 0 | { |
444 | 0 | return key->params->security_category; |
445 | 0 | } |
446 | | |
447 | | size_t ossl_slh_dsa_key_get_sig_len(const SLH_DSA_KEY *key) |
448 | 0 | { |
449 | 0 | return key->params->sig_len; |
450 | 0 | } |
451 | | const char *ossl_slh_dsa_key_get_name(const SLH_DSA_KEY *key) |
452 | 0 | { |
453 | 0 | return key->params->alg; |
454 | 0 | } |
455 | | int ossl_slh_dsa_key_get_type(const SLH_DSA_KEY *key) |
456 | 0 | { |
457 | 0 | return key->params->type; |
458 | 0 | } |
459 | | |
460 | | int ossl_slh_dsa_set_priv(SLH_DSA_KEY *key, const uint8_t *priv, size_t priv_len) |
461 | 0 | { |
462 | 0 | if (ossl_slh_dsa_key_get_priv_len(key) != priv_len) |
463 | 0 | return 0; |
464 | 0 | memcpy(key->priv, priv, priv_len); |
465 | 0 | key->has_priv = 1; |
466 | 0 | key->pub = SLH_DSA_PUB(key); |
467 | 0 | return 1; |
468 | 0 | } |
469 | | |
470 | | int ossl_slh_dsa_set_pub(SLH_DSA_KEY *key, const uint8_t *pub, size_t pub_len) |
471 | 0 | { |
472 | 0 | if (ossl_slh_dsa_key_get_pub_len(key) != pub_len) |
473 | 0 | return 0; |
474 | 0 | key->pub = SLH_DSA_PUB(key); |
475 | 0 | memcpy(key->pub, pub, pub_len); |
476 | 0 | key->has_priv = 0; |
477 | 0 | return 1; |
478 | 0 | } |
479 | | |
480 | | #ifndef FIPS_MODULE |
481 | | int ossl_slh_dsa_key_to_text(BIO *out, const SLH_DSA_KEY *key, int selection) |
482 | 0 | { |
483 | 0 | const char *name; |
484 | |
|
485 | 0 | if (out == NULL || key == NULL) { |
486 | 0 | ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_NULL_PARAMETER); |
487 | 0 | return 0; |
488 | 0 | } |
489 | 0 | name = ossl_slh_dsa_key_get_name(key); |
490 | 0 | if (ossl_slh_dsa_key_get_pub(key) == NULL) { |
491 | | /* Regardless of the |selection|, there must be a public key */ |
492 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_MISSING_KEY, |
493 | 0 | "no %s key material available", name); |
494 | 0 | return 0; |
495 | 0 | } |
496 | | |
497 | 0 | if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { |
498 | 0 | if (ossl_slh_dsa_key_get_priv(key) == NULL) { |
499 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_MISSING_KEY, |
500 | 0 | "no %s key material available", name); |
501 | 0 | return 0; |
502 | 0 | } |
503 | 0 | if (BIO_printf(out, "%s Private-Key:\n", name) <= 0) |
504 | 0 | return 0; |
505 | 0 | if (!ossl_bio_print_labeled_buf(out, "priv:", ossl_slh_dsa_key_get_priv(key), |
506 | 0 | ossl_slh_dsa_key_get_priv_len(key))) |
507 | 0 | return 0; |
508 | 0 | } else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) { |
509 | 0 | if (BIO_printf(out, "%s Public-Key:\n", name) <= 0) |
510 | 0 | return 0; |
511 | 0 | } |
512 | | |
513 | 0 | if (!ossl_bio_print_labeled_buf(out, "pub:", ossl_slh_dsa_key_get_pub(key), |
514 | 0 | ossl_slh_dsa_key_get_pub_len(key))) |
515 | 0 | return 0; |
516 | | |
517 | 0 | return 1; |
518 | 0 | } |
519 | | #endif /* FIPS_MODULE */ |