2 * Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
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
11 * DES low level APIs are deprecated for public use, but still ok for internal
12 * use. We access the DES_set_odd_parity(3) function here.
14 #include "internal/deprecated.h"
20 #include <openssl/core_names.h>
21 #include <openssl/des.h>
22 #include <openssl/evp.h>
23 #include <openssl/kdf.h>
24 #include <openssl/proverr.h>
26 #include "internal/cryptlib.h"
27 #include "crypto/evp.h"
28 #include "internal/numbers.h"
29 #include "prov/implementations.h"
30 #include "prov/provider_ctx.h"
31 #include "prov/provider_util.h"
32 #include "prov/providercommon.h"
34 /* KRB5 KDF defined in RFC 3961, Section 5.1 */
36 static OSSL_FUNC_kdf_newctx_fn krb5kdf_new;
37 static OSSL_FUNC_kdf_freectx_fn krb5kdf_free;
38 static OSSL_FUNC_kdf_reset_fn krb5kdf_reset;
39 static OSSL_FUNC_kdf_derive_fn krb5kdf_derive;
40 static OSSL_FUNC_kdf_settable_ctx_params_fn krb5kdf_settable_ctx_params;
41 static OSSL_FUNC_kdf_set_ctx_params_fn krb5kdf_set_ctx_params;
42 static OSSL_FUNC_kdf_gettable_ctx_params_fn krb5kdf_gettable_ctx_params;
43 static OSSL_FUNC_kdf_get_ctx_params_fn krb5kdf_get_ctx_params;
45 static int KRB5KDF(const EVP_CIPHER *cipher, ENGINE *engine,
46 const unsigned char *key, size_t key_len,
47 const unsigned char *constant, size_t constant_len,
48 unsigned char *okey, size_t okey_len);
55 unsigned char *constant;
59 static void *krb5kdf_new(void *provctx)
63 if (!ossl_prov_is_running())
66 if ((ctx = OPENSSL_zalloc(sizeof(*ctx))) == NULL) {
67 ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
70 ctx->provctx = provctx;
74 static void krb5kdf_free(void *vctx)
76 KRB5KDF_CTX *ctx = (KRB5KDF_CTX *)vctx;
84 static void krb5kdf_reset(void *vctx)
86 KRB5KDF_CTX *ctx = (KRB5KDF_CTX *)vctx;
87 void *provctx = ctx->provctx;
89 ossl_prov_cipher_reset(&ctx->cipher);
90 OPENSSL_clear_free(ctx->key, ctx->key_len);
91 OPENSSL_clear_free(ctx->constant, ctx->constant_len);
92 memset(ctx, 0, sizeof(*ctx));
93 ctx->provctx = provctx;
96 static int krb5kdf_set_membuf(unsigned char **dst, size_t *dst_len,
99 OPENSSL_clear_free(*dst, *dst_len);
101 return OSSL_PARAM_get_octet_string(p, (void **)dst, 0, dst_len);
104 static int krb5kdf_derive(void *vctx, unsigned char *key, size_t keylen,
105 const OSSL_PARAM params[])
107 KRB5KDF_CTX *ctx = (KRB5KDF_CTX *)vctx;
108 const EVP_CIPHER *cipher;
111 if (!ossl_prov_is_running() || !krb5kdf_set_ctx_params(ctx, params))
114 cipher = ossl_prov_cipher_cipher(&ctx->cipher);
115 if (cipher == NULL) {
116 ERR_raise(ERR_LIB_PROV, PROV_R_MISSING_CIPHER);
119 if (ctx->key == NULL) {
120 ERR_raise(ERR_LIB_PROV, PROV_R_MISSING_KEY);
123 if (ctx->constant == NULL) {
124 ERR_raise(ERR_LIB_PROV, PROV_R_MISSING_CONSTANT);
127 engine = ossl_prov_cipher_engine(&ctx->cipher);
128 return KRB5KDF(cipher, engine, ctx->key, ctx->key_len,
129 ctx->constant, ctx->constant_len,
133 static int krb5kdf_set_ctx_params(void *vctx, const OSSL_PARAM params[])
136 KRB5KDF_CTX *ctx = vctx;
137 OSSL_LIB_CTX *provctx = PROV_LIBCTX_OF(ctx->provctx);
139 if (!ossl_prov_cipher_load_from_params(&ctx->cipher, params, provctx))
142 if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_KEY)) != NULL)
143 if (!krb5kdf_set_membuf(&ctx->key, &ctx->key_len, p))
146 if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_CONSTANT))
148 if (!krb5kdf_set_membuf(&ctx->constant, &ctx->constant_len, p))
154 static const OSSL_PARAM *krb5kdf_settable_ctx_params(ossl_unused void *ctx,
155 ossl_unused void *provctx)
157 static const OSSL_PARAM known_settable_ctx_params[] = {
158 OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_PROPERTIES, NULL, 0),
159 OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_CIPHER, NULL, 0),
160 OSSL_PARAM_octet_string(OSSL_KDF_PARAM_KEY, NULL, 0),
161 OSSL_PARAM_octet_string(OSSL_KDF_PARAM_CONSTANT, NULL, 0),
164 return known_settable_ctx_params;
167 static int krb5kdf_get_ctx_params(void *vctx, OSSL_PARAM params[])
169 KRB5KDF_CTX *ctx = (KRB5KDF_CTX *)vctx;
170 const EVP_CIPHER *cipher;
174 cipher = ossl_prov_cipher_cipher(&ctx->cipher);
176 len = EVP_CIPHER_key_length(cipher);
178 len = EVP_MAX_KEY_LENGTH;
180 if ((p = OSSL_PARAM_locate(params, OSSL_KDF_PARAM_SIZE)) != NULL)
181 return OSSL_PARAM_set_size_t(p, len);
185 static const OSSL_PARAM *krb5kdf_gettable_ctx_params(ossl_unused void *ctx,
186 ossl_unused void *provctx)
188 static const OSSL_PARAM known_gettable_ctx_params[] = {
189 OSSL_PARAM_size_t(OSSL_KDF_PARAM_SIZE, NULL),
192 return known_gettable_ctx_params;
195 const OSSL_DISPATCH ossl_kdf_krb5kdf_functions[] = {
196 { OSSL_FUNC_KDF_NEWCTX, (void(*)(void))krb5kdf_new },
197 { OSSL_FUNC_KDF_FREECTX, (void(*)(void))krb5kdf_free },
198 { OSSL_FUNC_KDF_RESET, (void(*)(void))krb5kdf_reset },
199 { OSSL_FUNC_KDF_DERIVE, (void(*)(void))krb5kdf_derive },
200 { OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS,
201 (void(*)(void))krb5kdf_settable_ctx_params },
202 { OSSL_FUNC_KDF_SET_CTX_PARAMS,
203 (void(*)(void))krb5kdf_set_ctx_params },
204 { OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS,
205 (void(*)(void))krb5kdf_gettable_ctx_params },
206 { OSSL_FUNC_KDF_GET_CTX_PARAMS,
207 (void(*)(void))krb5kdf_get_ctx_params },
211 #ifndef OPENSSL_NO_DES
213 * DES3 is a special case, it requires a random-to-key function and its
214 * input truncated to 21 bytes of the 24 produced by the cipher.
217 static int fixup_des3_key(unsigned char *key)
219 unsigned char *cblock;
222 for (i = 2; i >= 0; i--) {
223 cblock = &key[i * 8];
224 memmove(cblock, &key[i * 7], 7);
226 for (j = 0; j < 7; j++)
227 cblock[7] |= (cblock[j] & 1) << (j + 1);
228 DES_set_odd_parity((DES_cblock *)cblock);
231 /* fail if keys are such that triple des degrades to single des */
232 if (CRYPTO_memcmp(&key[0], &key[8], 8) == 0 ||
233 CRYPTO_memcmp(&key[8], &key[16], 8) == 0) {
242 * N-fold(K) where blocksize is N, and constant_len is K
243 * Note: Here |= denotes concatenation
249 * s |= constant rot 13*(r-1))
253 * block += s[N(k-1)..(N-1)k] (one's complement addition)
255 * Optimizing for space we compute:
256 * for each l in L-1 -> 0:
257 * s[l] = (constant rot 13*(l/K))[l%k]
258 * block[l % N] += s[l] (with carry)
259 * finally add carry if any
261 static void n_fold(unsigned char *block, unsigned int blocksize,
262 const unsigned char *constant, size_t constant_len)
264 unsigned int tmp, gcd, remainder, lcm, carry;
267 if (constant_len == blocksize) {
268 memcpy(block, constant, constant_len);
272 /* Least Common Multiple of lengths: LCM(a,b)*/
274 remainder = constant_len;
275 /* Calculate Great Common Divisor first GCD(a,b) */
276 while (remainder != 0) {
277 tmp = gcd % remainder;
281 /* resulting a is the GCD, LCM(a,b) = |a*b|/GCD(a,b) */
282 lcm = blocksize * constant_len / gcd;
284 /* now spread out the bits */
285 memset(block, 0, blocksize);
287 /* last to first to be able to bring carry forward */
289 for (l = lcm - 1; l >= 0; l--) {
290 unsigned int rotbits, rshift, rbyte;
292 /* destination byte in block is l % N */
294 /* Our virtual s buffer is R = L/K long (K = constant_len) */
295 /* So we rotate backwards from R-1 to 0 (none) rotations */
296 rotbits = 13 * (l / constant_len);
297 /* find the byte on s where rotbits falls onto */
298 rbyte = l - (rotbits / 8);
299 /* calculate how much shift on that byte */
300 rshift = rotbits & 0x07;
301 /* rbyte % constant_len gives us the unrotated byte in the
302 * constant buffer, get also the previous byte then
303 * appropriately shift them to get the rotated byte we need */
304 tmp = (constant[(rbyte-1) % constant_len] << (8 - rshift)
305 | constant[rbyte % constant_len] >> rshift)
307 /* add with carry to any value placed by previous passes */
308 tmp += carry + block[b];
309 block[b] = tmp & 0xff;
310 /* save any carry that may be left */
314 /* if any carry is left at the end, add it through the number */
315 for (b = blocksize - 1; b >= 0 && carry != 0; b--) {
317 block[b] = carry & 0xff;
322 static int cipher_init(EVP_CIPHER_CTX *ctx,
323 const EVP_CIPHER *cipher, ENGINE *engine,
324 const unsigned char *key, size_t key_len)
328 ret = EVP_EncryptInit_ex(ctx, cipher, engine, key, NULL);
331 /* set the key len for the odd variable key len cipher */
332 klen = EVP_CIPHER_CTX_key_length(ctx);
333 if (key_len != (size_t)klen) {
334 ret = EVP_CIPHER_CTX_set_key_length(ctx, key_len);
338 /* we never want padding, either the length requested is a multiple of
339 * the cipher block size or we are passed a cipher that can cope with
340 * partial blocks via techniques like cipher text stealing */
341 ret = EVP_CIPHER_CTX_set_padding(ctx, 0);
349 static int KRB5KDF(const EVP_CIPHER *cipher, ENGINE *engine,
350 const unsigned char *key, size_t key_len,
351 const unsigned char *constant, size_t constant_len,
352 unsigned char *okey, size_t okey_len)
354 EVP_CIPHER_CTX *ctx = NULL;
355 unsigned char block[EVP_MAX_BLOCK_LENGTH * 2];
356 unsigned char *plainblock, *cipherblock;
360 #ifndef OPENSSL_NO_DES
361 int des3_no_fixup = 0;
365 if (key_len != okey_len) {
366 #ifndef OPENSSL_NO_DES
367 /* special case for 3des, where the caller may be requesting
368 * the random raw key, instead of the fixed up key */
369 if (EVP_CIPHER_nid(cipher) == NID_des_ede3_cbc &&
370 key_len == 24 && okey_len == 21) {
374 ERR_raise(ERR_LIB_PROV, PROV_R_WRONG_OUTPUT_BUFFER_SIZE);
376 #ifndef OPENSSL_NO_DES
381 ctx = EVP_CIPHER_CTX_new();
385 ret = cipher_init(ctx, cipher, engine, key, key_len);
389 /* Initialize input block */
390 blocksize = EVP_CIPHER_CTX_block_size(ctx);
392 if (constant_len > blocksize) {
393 ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_CONSTANT_LENGTH);
398 n_fold(block, blocksize, constant, constant_len);
400 cipherblock = block + EVP_MAX_BLOCK_LENGTH;
402 for (osize = 0; osize < okey_len; osize += cipherlen) {
405 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen,
406 plainblock, blocksize);
410 ret = EVP_EncryptFinal_ex(ctx, cipherblock, &olen);
414 ERR_raise(ERR_LIB_PROV, PROV_R_WRONG_FINAL_BLOCK_LENGTH);
419 /* write cipherblock out */
420 if (cipherlen > okey_len - osize)
421 cipherlen = okey_len - osize;
422 memcpy(okey + osize, cipherblock, cipherlen);
424 if (okey_len > osize + cipherlen) {
425 /* we need to reinitialize cipher context per spec */
426 ret = EVP_CIPHER_CTX_reset(ctx);
429 ret = cipher_init(ctx, cipher, engine, key, key_len);
433 /* also swap block offsets so last ciphertext becomes new
435 plainblock = cipherblock;
436 if (cipherblock == block) {
437 cipherblock += EVP_MAX_BLOCK_LENGTH;
444 #ifndef OPENSSL_NO_DES
445 if (EVP_CIPHER_nid(cipher) == NID_des_ede3_cbc && !des3_no_fixup) {
446 ret = fixup_des3_key(okey);
448 ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GENERATE_KEY);
457 EVP_CIPHER_CTX_free(ctx);
458 OPENSSL_cleanse(block, EVP_MAX_BLOCK_LENGTH * 2);