]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dh/dh_kdf.c
Fix the return check of OBJ_obj2txt
[thirdparty/openssl.git] / crypto / dh / dh_kdf.c
CommitLineData
dc1ce3bc 1/*
8020d79b 2 * Copyright 2013-2021 The OpenSSL Project Authors. All Rights Reserved.
dc1ce3bc 3 *
e38873f5 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
aa6bb135
RS
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
dc1ce3bc
DSH
8 */
9
ada66e78
P
10/*
11 * DH low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
bef7a815 16#include "e_os.h"
116d2510
SL
17#include "e_os.h"
18#include <string.h>
19#include <openssl/core_names.h>
20#include <openssl/dh.h>
21#include <openssl/evp.h>
22#include <openssl/asn1.h>
23#include <openssl/kdf.h>
449bdf37 24#include "internal/provider.h"
9d0dd1d5 25#include "crypto/dh.h"
e968561d 26
116d2510 27/* Key derivation function from X9.63/SECG */
19dbb742
SL
28int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen,
29 const unsigned char *Z, size_t Zlen,
30 const char *cek_alg,
31 const unsigned char *ukm, size_t ukmlen,
32 const EVP_MD *md,
33 OSSL_LIB_CTX *libctx, const char *propq)
0f113f3e 34{
116d2510 35 int ret = 0;
1aec7716 36 EVP_KDF_CTX *kctx = NULL;
7707526b 37 EVP_KDF *kdf = NULL;
7707526b 38 OSSL_PARAM params[5], *p = params;
ed576acd 39 const char *mdname = EVP_MD_get0_name(md);
1aec7716 40
89cccbea 41 kdf = EVP_KDF_fetch(libctx, OSSL_KDF_NAME_X942KDF_ASN1, propq);
116d2510
SL
42 kctx = EVP_KDF_CTX_new(kdf);
43 if (kctx == NULL)
0f113f3e 44 goto err;
116d2510 45
7707526b 46 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST,
8b6ffd40 47 (char *)mdname, 0);
7707526b
P
48 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_KEY,
49 (unsigned char *)Z, Zlen);
50 if (ukm != NULL)
51 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_UKM,
52 (unsigned char *)ukm, ukmlen);
53 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_CEK_ALG,
116d2510 54 (char *)cek_alg, 0);
7707526b 55 *p = OSSL_PARAM_construct_end();
36fae6e8 56 ret = EVP_KDF_derive(kctx, out, outlen, params) > 0;
1aec7716 57err:
660c5344 58 EVP_KDF_CTX_free(kctx);
7707526b 59 EVP_KDF_free(kdf);
1aec7716 60 return ret;
0f113f3e 61}
116d2510 62
7fe32ef6 63#if !defined(FIPS_MODULE)
116d2510
SL
64int DH_KDF_X9_42(unsigned char *out, size_t outlen,
65 const unsigned char *Z, size_t Zlen,
66 ASN1_OBJECT *key_oid,
67 const unsigned char *ukm, size_t ukmlen, const EVP_MD *md)
68{
ad57a13b 69 char key_alg[OSSL_MAX_NAME_SIZE];
ed576acd 70 const OSSL_PROVIDER *prov = EVP_MD_get0_provider(md);
a829b735 71 OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);
116d2510 72
2349d7ba 73 if (OBJ_obj2txt(key_alg, sizeof(key_alg), key_oid, 0) <= 0)
116d2510
SL
74 return 0;
75
19dbb742
SL
76 return ossl_dh_kdf_X9_42_asn1(out, outlen, Z, Zlen, key_alg,
77 ukm, ukmlen, md, libctx, NULL);
116d2510 78}
7fe32ef6 79#endif /* !defined(FIPS_MODULE) */