1 | /*
|
---|
2 | * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | * Copyright 2019 Red Hat, Inc.
|
---|
4 | *
|
---|
5 | * Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
6 | * this file except in compliance with the License. You can obtain a copy
|
---|
7 | * in the file LICENSE in the source distribution or at
|
---|
8 | * https://www.openssl.org/source/license.html
|
---|
9 | */
|
---|
10 |
|
---|
11 | /*
|
---|
12 | * This implements https://csrc.nist.gov/publications/detail/sp/800-108/final
|
---|
13 | * section 5.1 ("counter mode") and section 5.2 ("feedback mode") in both HMAC
|
---|
14 | * and CMAC. That document does not name the KDFs it defines; the name is
|
---|
15 | * derived from
|
---|
16 | * https://csrc.nist.gov/Projects/Cryptographic-Algorithm-Validation-Program/Key-Derivation
|
---|
17 | *
|
---|
18 | * Note that section 5.3 ("double-pipeline mode") is not implemented, though
|
---|
19 | * it would be possible to do so in the future.
|
---|
20 | *
|
---|
21 | * These versions all assume the counter is used. It would be relatively
|
---|
22 | * straightforward to expose a configuration handle should the need arise.
|
---|
23 | *
|
---|
24 | * Variable names attempt to match those of SP800-108.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #include <stdarg.h>
|
---|
28 | #include <stdlib.h>
|
---|
29 | #include <string.h>
|
---|
30 |
|
---|
31 | #include <openssl/core_names.h>
|
---|
32 | #include <openssl/evp.h>
|
---|
33 | #include <openssl/hmac.h>
|
---|
34 | #include <openssl/kdf.h>
|
---|
35 | #include <openssl/params.h>
|
---|
36 | #include <openssl/proverr.h>
|
---|
37 |
|
---|
38 | #include "internal/cryptlib.h"
|
---|
39 | #include "crypto/evp.h"
|
---|
40 | #include "internal/numbers.h"
|
---|
41 | #include "internal/endian.h"
|
---|
42 | #include "prov/implementations.h"
|
---|
43 | #include "prov/provider_ctx.h"
|
---|
44 | #include "prov/provider_util.h"
|
---|
45 | #include "prov/providercommon.h"
|
---|
46 |
|
---|
47 | #include "internal/e_os.h"
|
---|
48 |
|
---|
49 | #define ossl_min(a, b) ((a) < (b)) ? (a) : (b)
|
---|
50 |
|
---|
51 | typedef enum {
|
---|
52 | COUNTER = 0,
|
---|
53 | FEEDBACK
|
---|
54 | } kbkdf_mode;
|
---|
55 |
|
---|
56 | /* Our context structure. */
|
---|
57 | typedef struct {
|
---|
58 | void *provctx;
|
---|
59 | kbkdf_mode mode;
|
---|
60 | EVP_MAC_CTX *ctx_init;
|
---|
61 |
|
---|
62 | /* Names are lowercased versions of those found in SP800-108. */
|
---|
63 | int r;
|
---|
64 | unsigned char *ki;
|
---|
65 | size_t ki_len;
|
---|
66 | unsigned char *label;
|
---|
67 | size_t label_len;
|
---|
68 | unsigned char *context;
|
---|
69 | size_t context_len;
|
---|
70 | unsigned char *iv;
|
---|
71 | size_t iv_len;
|
---|
72 | int use_l;
|
---|
73 | int is_kmac;
|
---|
74 | int use_separator;
|
---|
75 | } KBKDF;
|
---|
76 |
|
---|
77 | /* Definitions needed for typechecking. */
|
---|
78 | static OSSL_FUNC_kdf_newctx_fn kbkdf_new;
|
---|
79 | static OSSL_FUNC_kdf_dupctx_fn kbkdf_dup;
|
---|
80 | static OSSL_FUNC_kdf_freectx_fn kbkdf_free;
|
---|
81 | static OSSL_FUNC_kdf_reset_fn kbkdf_reset;
|
---|
82 | static OSSL_FUNC_kdf_derive_fn kbkdf_derive;
|
---|
83 | static OSSL_FUNC_kdf_settable_ctx_params_fn kbkdf_settable_ctx_params;
|
---|
84 | static OSSL_FUNC_kdf_set_ctx_params_fn kbkdf_set_ctx_params;
|
---|
85 | static OSSL_FUNC_kdf_gettable_ctx_params_fn kbkdf_gettable_ctx_params;
|
---|
86 | static OSSL_FUNC_kdf_get_ctx_params_fn kbkdf_get_ctx_params;
|
---|
87 |
|
---|
88 | /* Not all platforms have htobe32(). */
|
---|
89 | static uint32_t be32(uint32_t host)
|
---|
90 | {
|
---|
91 | uint32_t big = 0;
|
---|
92 | DECLARE_IS_ENDIAN;
|
---|
93 |
|
---|
94 | if (!IS_LITTLE_ENDIAN)
|
---|
95 | return host;
|
---|
96 |
|
---|
97 | big |= (host & 0xff000000) >> 24;
|
---|
98 | big |= (host & 0x00ff0000) >> 8;
|
---|
99 | big |= (host & 0x0000ff00) << 8;
|
---|
100 | big |= (host & 0x000000ff) << 24;
|
---|
101 | return big;
|
---|
102 | }
|
---|
103 |
|
---|
104 | static void init(KBKDF *ctx)
|
---|
105 | {
|
---|
106 | ctx->r = 32;
|
---|
107 | ctx->use_l = 1;
|
---|
108 | ctx->use_separator = 1;
|
---|
109 | ctx->is_kmac = 0;
|
---|
110 | }
|
---|
111 |
|
---|
112 | static void *kbkdf_new(void *provctx)
|
---|
113 | {
|
---|
114 | KBKDF *ctx;
|
---|
115 |
|
---|
116 | if (!ossl_prov_is_running())
|
---|
117 | return NULL;
|
---|
118 |
|
---|
119 | ctx = OPENSSL_zalloc(sizeof(*ctx));
|
---|
120 | if (ctx == NULL) {
|
---|
121 | ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
|
---|
122 | return NULL;
|
---|
123 | }
|
---|
124 |
|
---|
125 | ctx->provctx = provctx;
|
---|
126 | init(ctx);
|
---|
127 | return ctx;
|
---|
128 | }
|
---|
129 |
|
---|
130 | static void kbkdf_free(void *vctx)
|
---|
131 | {
|
---|
132 | KBKDF *ctx = (KBKDF *)vctx;
|
---|
133 |
|
---|
134 | if (ctx != NULL) {
|
---|
135 | kbkdf_reset(ctx);
|
---|
136 | OPENSSL_free(ctx);
|
---|
137 | }
|
---|
138 | }
|
---|
139 |
|
---|
140 | static void kbkdf_reset(void *vctx)
|
---|
141 | {
|
---|
142 | KBKDF *ctx = (KBKDF *)vctx;
|
---|
143 | void *provctx = ctx->provctx;
|
---|
144 |
|
---|
145 | EVP_MAC_CTX_free(ctx->ctx_init);
|
---|
146 | OPENSSL_clear_free(ctx->context, ctx->context_len);
|
---|
147 | OPENSSL_clear_free(ctx->label, ctx->label_len);
|
---|
148 | OPENSSL_clear_free(ctx->ki, ctx->ki_len);
|
---|
149 | OPENSSL_clear_free(ctx->iv, ctx->iv_len);
|
---|
150 | memset(ctx, 0, sizeof(*ctx));
|
---|
151 | ctx->provctx = provctx;
|
---|
152 | init(ctx);
|
---|
153 | }
|
---|
154 |
|
---|
155 | static void *kbkdf_dup(void *vctx)
|
---|
156 | {
|
---|
157 | const KBKDF *src = (const KBKDF *)vctx;
|
---|
158 | KBKDF *dest;
|
---|
159 |
|
---|
160 | dest = kbkdf_new(src->provctx);
|
---|
161 | if (dest != NULL) {
|
---|
162 | dest->ctx_init = EVP_MAC_CTX_dup(src->ctx_init);
|
---|
163 | if (dest->ctx_init == NULL
|
---|
164 | || !ossl_prov_memdup(src->ki, src->ki_len,
|
---|
165 | &dest->ki, &dest->ki_len)
|
---|
166 | || !ossl_prov_memdup(src->label, src->label_len,
|
---|
167 | &dest->label, &dest->label_len)
|
---|
168 | || !ossl_prov_memdup(src->context, src->context_len,
|
---|
169 | &dest->context, &dest->context_len)
|
---|
170 | || !ossl_prov_memdup(src->iv, src->iv_len,
|
---|
171 | &dest->iv, &dest->iv_len))
|
---|
172 | goto err;
|
---|
173 | dest->mode = src->mode;
|
---|
174 | dest->r = src->r;
|
---|
175 | dest->use_l = src->use_l;
|
---|
176 | dest->use_separator = src->use_separator;
|
---|
177 | dest->is_kmac = src->is_kmac;
|
---|
178 | }
|
---|
179 | return dest;
|
---|
180 |
|
---|
181 | err:
|
---|
182 | kbkdf_free(dest);
|
---|
183 | return NULL;
|
---|
184 | }
|
---|
185 |
|
---|
186 | /* SP800-108 section 5.1 or section 5.2 depending on mode. */
|
---|
187 | static int derive(EVP_MAC_CTX *ctx_init, kbkdf_mode mode, unsigned char *iv,
|
---|
188 | size_t iv_len, unsigned char *label, size_t label_len,
|
---|
189 | unsigned char *context, size_t context_len,
|
---|
190 | unsigned char *k_i, size_t h, uint32_t l, int has_separator,
|
---|
191 | unsigned char *ko, size_t ko_len, int r)
|
---|
192 | {
|
---|
193 | int ret = 0;
|
---|
194 | EVP_MAC_CTX *ctx = NULL;
|
---|
195 | size_t written = 0, to_write, k_i_len = iv_len;
|
---|
196 | const unsigned char zero = 0;
|
---|
197 | uint32_t counter, i;
|
---|
198 | /*
|
---|
199 | * From SP800-108:
|
---|
200 | * The fixed input data is a concatenation of a Label,
|
---|
201 | * a separation indicator 0x00, the Context, and L.
|
---|
202 | * One or more of these fixed input data fields may be omitted.
|
---|
203 | *
|
---|
204 | * has_separator == 0 means that the separator is omitted.
|
---|
205 | * Passing a value of l == 0 means that L is omitted.
|
---|
206 | * The Context and L are omitted automatically if a NULL buffer is passed.
|
---|
207 | */
|
---|
208 | int has_l = (l != 0);
|
---|
209 |
|
---|
210 | /* Setup K(0) for feedback mode. */
|
---|
211 | if (iv_len > 0)
|
---|
212 | memcpy(k_i, iv, iv_len);
|
---|
213 |
|
---|
214 | for (counter = 1; written < ko_len; counter++) {
|
---|
215 | i = be32(counter);
|
---|
216 |
|
---|
217 | ctx = EVP_MAC_CTX_dup(ctx_init);
|
---|
218 | if (ctx == NULL)
|
---|
219 | goto done;
|
---|
220 |
|
---|
221 | /* Perform feedback, if appropriate. */
|
---|
222 | if (mode == FEEDBACK && !EVP_MAC_update(ctx, k_i, k_i_len))
|
---|
223 | goto done;
|
---|
224 |
|
---|
225 | if (!EVP_MAC_update(ctx, 4 - (r / 8) + (unsigned char *)&i, r / 8)
|
---|
226 | || !EVP_MAC_update(ctx, label, label_len)
|
---|
227 | || (has_separator && !EVP_MAC_update(ctx, &zero, 1))
|
---|
228 | || !EVP_MAC_update(ctx, context, context_len)
|
---|
229 | || (has_l && !EVP_MAC_update(ctx, (unsigned char *)&l, 4))
|
---|
230 | || !EVP_MAC_final(ctx, k_i, NULL, h))
|
---|
231 | goto done;
|
---|
232 |
|
---|
233 | to_write = ko_len - written;
|
---|
234 | memcpy(ko + written, k_i, ossl_min(to_write, h));
|
---|
235 | written += h;
|
---|
236 |
|
---|
237 | k_i_len = h;
|
---|
238 | EVP_MAC_CTX_free(ctx);
|
---|
239 | ctx = NULL;
|
---|
240 | }
|
---|
241 |
|
---|
242 | ret = 1;
|
---|
243 | done:
|
---|
244 | EVP_MAC_CTX_free(ctx);
|
---|
245 | return ret;
|
---|
246 | }
|
---|
247 |
|
---|
248 | /* This must be run before the key is set */
|
---|
249 | static int kmac_init(EVP_MAC_CTX *ctx, const unsigned char *custom, size_t customlen)
|
---|
250 | {
|
---|
251 | OSSL_PARAM params[2];
|
---|
252 |
|
---|
253 | if (custom == NULL || customlen == 0)
|
---|
254 | return 1;
|
---|
255 | params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_CUSTOM,
|
---|
256 | (void *)custom, customlen);
|
---|
257 | params[1] = OSSL_PARAM_construct_end();
|
---|
258 | return EVP_MAC_CTX_set_params(ctx, params) > 0;
|
---|
259 | }
|
---|
260 |
|
---|
261 | static int kmac_derive(EVP_MAC_CTX *ctx, unsigned char *out, size_t outlen,
|
---|
262 | const unsigned char *context, size_t contextlen)
|
---|
263 | {
|
---|
264 | OSSL_PARAM params[2];
|
---|
265 |
|
---|
266 | params[0] = OSSL_PARAM_construct_size_t(OSSL_MAC_PARAM_SIZE, &outlen);
|
---|
267 | params[1] = OSSL_PARAM_construct_end();
|
---|
268 | return EVP_MAC_CTX_set_params(ctx, params) > 0
|
---|
269 | && EVP_MAC_update(ctx, context, contextlen)
|
---|
270 | && EVP_MAC_final(ctx, out, NULL, outlen);
|
---|
271 | }
|
---|
272 |
|
---|
273 | static int kbkdf_derive(void *vctx, unsigned char *key, size_t keylen,
|
---|
274 | const OSSL_PARAM params[])
|
---|
275 | {
|
---|
276 | KBKDF *ctx = (KBKDF *)vctx;
|
---|
277 | int ret = 0;
|
---|
278 | unsigned char *k_i = NULL;
|
---|
279 | uint32_t l = 0;
|
---|
280 | size_t h = 0;
|
---|
281 | uint64_t counter_max;
|
---|
282 |
|
---|
283 | if (!ossl_prov_is_running() || !kbkdf_set_ctx_params(ctx, params))
|
---|
284 | return 0;
|
---|
285 |
|
---|
286 | /* label, context, and iv are permitted to be empty. Check everything
|
---|
287 | * else. */
|
---|
288 | if (ctx->ctx_init == NULL) {
|
---|
289 | if (ctx->ki_len == 0 || ctx->ki == NULL) {
|
---|
290 | ERR_raise(ERR_LIB_PROV, PROV_R_NO_KEY_SET);
|
---|
291 | return 0;
|
---|
292 | }
|
---|
293 | /* Could either be missing MAC or missing message digest or missing
|
---|
294 | * cipher - arbitrarily, I pick this one. */
|
---|
295 | ERR_raise(ERR_LIB_PROV, PROV_R_MISSING_MAC);
|
---|
296 | return 0;
|
---|
297 | }
|
---|
298 |
|
---|
299 | /* Fail if the output length is zero */
|
---|
300 | if (keylen == 0) {
|
---|
301 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
|
---|
302 | return 0;
|
---|
303 | }
|
---|
304 |
|
---|
305 | if (ctx->is_kmac) {
|
---|
306 | ret = kmac_derive(ctx->ctx_init, key, keylen,
|
---|
307 | ctx->context, ctx->context_len);
|
---|
308 | goto done;
|
---|
309 | }
|
---|
310 |
|
---|
311 | h = EVP_MAC_CTX_get_mac_size(ctx->ctx_init);
|
---|
312 | if (h == 0)
|
---|
313 | goto done;
|
---|
314 |
|
---|
315 | if (ctx->iv_len != 0 && ctx->iv_len != h) {
|
---|
316 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_SEED_LENGTH);
|
---|
317 | goto done;
|
---|
318 | }
|
---|
319 |
|
---|
320 | if (ctx->mode == COUNTER) {
|
---|
321 | /* Fail if keylen is too large for r */
|
---|
322 | counter_max = (uint64_t)1 << (uint64_t)ctx->r;
|
---|
323 | if ((uint64_t)(keylen / h) >= counter_max) {
|
---|
324 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
|
---|
325 | goto done;
|
---|
326 | }
|
---|
327 | }
|
---|
328 |
|
---|
329 | if (ctx->use_l != 0)
|
---|
330 | l = be32(keylen * 8);
|
---|
331 |
|
---|
332 | k_i = OPENSSL_zalloc(h);
|
---|
333 | if (k_i == NULL)
|
---|
334 | goto done;
|
---|
335 |
|
---|
336 | ret = derive(ctx->ctx_init, ctx->mode, ctx->iv, ctx->iv_len, ctx->label,
|
---|
337 | ctx->label_len, ctx->context, ctx->context_len, k_i, h, l,
|
---|
338 | ctx->use_separator, key, keylen, ctx->r);
|
---|
339 | done:
|
---|
340 | if (ret != 1)
|
---|
341 | OPENSSL_cleanse(key, keylen);
|
---|
342 | OPENSSL_clear_free(k_i, h);
|
---|
343 | return ret;
|
---|
344 | }
|
---|
345 |
|
---|
346 | static int kbkdf_set_buffer(unsigned char **out, size_t *out_len,
|
---|
347 | const OSSL_PARAM *p)
|
---|
348 | {
|
---|
349 | if (p->data == NULL || p->data_size == 0)
|
---|
350 | return 1;
|
---|
351 |
|
---|
352 | OPENSSL_clear_free(*out, *out_len);
|
---|
353 | *out = NULL;
|
---|
354 | return OSSL_PARAM_get_octet_string(p, (void **)out, 0, out_len);
|
---|
355 | }
|
---|
356 |
|
---|
357 | static int kbkdf_set_ctx_params(void *vctx, const OSSL_PARAM params[])
|
---|
358 | {
|
---|
359 | KBKDF *ctx = (KBKDF *)vctx;
|
---|
360 | OSSL_LIB_CTX *libctx = PROV_LIBCTX_OF(ctx->provctx);
|
---|
361 | const OSSL_PARAM *p;
|
---|
362 |
|
---|
363 | if (params == NULL)
|
---|
364 | return 1;
|
---|
365 |
|
---|
366 | if (!ossl_prov_macctx_load_from_params(&ctx->ctx_init, params, NULL,
|
---|
367 | NULL, NULL, libctx))
|
---|
368 | return 0;
|
---|
369 | else if (ctx->ctx_init != NULL) {
|
---|
370 | if (EVP_MAC_is_a(EVP_MAC_CTX_get0_mac(ctx->ctx_init),
|
---|
371 | OSSL_MAC_NAME_KMAC128)
|
---|
372 | || EVP_MAC_is_a(EVP_MAC_CTX_get0_mac(ctx->ctx_init),
|
---|
373 | OSSL_MAC_NAME_KMAC256)) {
|
---|
374 | ctx->is_kmac = 1;
|
---|
375 | } else if (!EVP_MAC_is_a(EVP_MAC_CTX_get0_mac(ctx->ctx_init),
|
---|
376 | OSSL_MAC_NAME_HMAC)
|
---|
377 | && !EVP_MAC_is_a(EVP_MAC_CTX_get0_mac(ctx->ctx_init),
|
---|
378 | OSSL_MAC_NAME_CMAC)) {
|
---|
379 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_MAC);
|
---|
380 | return 0;
|
---|
381 | }
|
---|
382 | }
|
---|
383 |
|
---|
384 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_MODE);
|
---|
385 | if (p != NULL
|
---|
386 | && OPENSSL_strncasecmp("counter", p->data, p->data_size) == 0) {
|
---|
387 | ctx->mode = COUNTER;
|
---|
388 | } else if (p != NULL
|
---|
389 | && OPENSSL_strncasecmp("feedback", p->data, p->data_size) == 0) {
|
---|
390 | ctx->mode = FEEDBACK;
|
---|
391 | } else if (p != NULL) {
|
---|
392 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_MODE);
|
---|
393 | return 0;
|
---|
394 | }
|
---|
395 |
|
---|
396 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_KEY);
|
---|
397 | if (p != NULL && !kbkdf_set_buffer(&ctx->ki, &ctx->ki_len, p))
|
---|
398 | return 0;
|
---|
399 |
|
---|
400 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_SALT);
|
---|
401 | if (p != NULL && !kbkdf_set_buffer(&ctx->label, &ctx->label_len, p))
|
---|
402 | return 0;
|
---|
403 |
|
---|
404 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_INFO);
|
---|
405 | if (p != NULL && !kbkdf_set_buffer(&ctx->context, &ctx->context_len, p))
|
---|
406 | return 0;
|
---|
407 |
|
---|
408 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_SEED);
|
---|
409 | if (p != NULL && !kbkdf_set_buffer(&ctx->iv, &ctx->iv_len, p))
|
---|
410 | return 0;
|
---|
411 |
|
---|
412 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_KBKDF_USE_L);
|
---|
413 | if (p != NULL && !OSSL_PARAM_get_int(p, &ctx->use_l))
|
---|
414 | return 0;
|
---|
415 |
|
---|
416 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_KBKDF_R);
|
---|
417 | if (p != NULL) {
|
---|
418 | int new_r = 0;
|
---|
419 |
|
---|
420 | if (!OSSL_PARAM_get_int(p, &new_r))
|
---|
421 | return 0;
|
---|
422 | if (new_r != 8 && new_r != 16 && new_r != 24 && new_r != 32)
|
---|
423 | return 0;
|
---|
424 | ctx->r = new_r;
|
---|
425 | }
|
---|
426 |
|
---|
427 | p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_KBKDF_USE_SEPARATOR);
|
---|
428 | if (p != NULL && !OSSL_PARAM_get_int(p, &ctx->use_separator))
|
---|
429 | return 0;
|
---|
430 |
|
---|
431 | /* Set up digest context, if we can. */
|
---|
432 | if (ctx->ctx_init != NULL && ctx->ki_len != 0) {
|
---|
433 | if ((ctx->is_kmac && !kmac_init(ctx->ctx_init, ctx->label, ctx->label_len))
|
---|
434 | || !EVP_MAC_init(ctx->ctx_init, ctx->ki, ctx->ki_len, NULL))
|
---|
435 | return 0;
|
---|
436 | }
|
---|
437 | return 1;
|
---|
438 | }
|
---|
439 |
|
---|
440 | static const OSSL_PARAM *kbkdf_settable_ctx_params(ossl_unused void *ctx,
|
---|
441 | ossl_unused void *provctx)
|
---|
442 | {
|
---|
443 | static const OSSL_PARAM known_settable_ctx_params[] = {
|
---|
444 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_INFO, NULL, 0),
|
---|
445 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_SALT, NULL, 0),
|
---|
446 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_KEY, NULL, 0),
|
---|
447 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_SEED, NULL, 0),
|
---|
448 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_DIGEST, NULL, 0),
|
---|
449 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_CIPHER, NULL, 0),
|
---|
450 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_MAC, NULL, 0),
|
---|
451 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_MODE, NULL, 0),
|
---|
452 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_PROPERTIES, NULL, 0),
|
---|
453 | OSSL_PARAM_int(OSSL_KDF_PARAM_KBKDF_USE_L, NULL),
|
---|
454 | OSSL_PARAM_int(OSSL_KDF_PARAM_KBKDF_USE_SEPARATOR, NULL),
|
---|
455 | OSSL_PARAM_int(OSSL_KDF_PARAM_KBKDF_R, NULL),
|
---|
456 | OSSL_PARAM_END,
|
---|
457 | };
|
---|
458 | return known_settable_ctx_params;
|
---|
459 | }
|
---|
460 |
|
---|
461 | static int kbkdf_get_ctx_params(void *vctx, OSSL_PARAM params[])
|
---|
462 | {
|
---|
463 | OSSL_PARAM *p;
|
---|
464 |
|
---|
465 | p = OSSL_PARAM_locate(params, OSSL_KDF_PARAM_SIZE);
|
---|
466 | if (p == NULL)
|
---|
467 | return -2;
|
---|
468 |
|
---|
469 | /* KBKDF can produce results as large as you like. */
|
---|
470 | return OSSL_PARAM_set_size_t(p, SIZE_MAX);
|
---|
471 | }
|
---|
472 |
|
---|
473 | static const OSSL_PARAM *kbkdf_gettable_ctx_params(ossl_unused void *ctx,
|
---|
474 | ossl_unused void *provctx)
|
---|
475 | {
|
---|
476 | static const OSSL_PARAM known_gettable_ctx_params[] =
|
---|
477 | { OSSL_PARAM_size_t(OSSL_KDF_PARAM_SIZE, NULL), OSSL_PARAM_END };
|
---|
478 | return known_gettable_ctx_params;
|
---|
479 | }
|
---|
480 |
|
---|
481 | const OSSL_DISPATCH ossl_kdf_kbkdf_functions[] = {
|
---|
482 | { OSSL_FUNC_KDF_NEWCTX, (void(*)(void))kbkdf_new },
|
---|
483 | { OSSL_FUNC_KDF_DUPCTX, (void(*)(void))kbkdf_dup },
|
---|
484 | { OSSL_FUNC_KDF_FREECTX, (void(*)(void))kbkdf_free },
|
---|
485 | { OSSL_FUNC_KDF_RESET, (void(*)(void))kbkdf_reset },
|
---|
486 | { OSSL_FUNC_KDF_DERIVE, (void(*)(void))kbkdf_derive },
|
---|
487 | { OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS,
|
---|
488 | (void(*)(void))kbkdf_settable_ctx_params },
|
---|
489 | { OSSL_FUNC_KDF_SET_CTX_PARAMS, (void(*)(void))kbkdf_set_ctx_params },
|
---|
490 | { OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS,
|
---|
491 | (void(*)(void))kbkdf_gettable_ctx_params },
|
---|
492 | { OSSL_FUNC_KDF_GET_CTX_PARAMS, (void(*)(void))kbkdf_get_ctx_params },
|
---|
493 | { 0, NULL },
|
---|
494 | };
|
---|