2 * HKDF implementation -- RFC 5869
4 * Copyright The Mbed TLS Contributors
5 * SPDX-License-Identifier: Apache-2.0
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
21 #if defined(MBEDTLS_HKDF_C)
24 #include "mbedtls/hkdf.h"
25 #include "mbedtls/platform_util.h"
26 #include "mbedtls/error.h"
28 int mbedtls_hkdf(const mbedtls_md_info_t
*md
, const unsigned char *salt
,
29 size_t salt_len
, const unsigned char *ikm
, size_t ikm_len
,
30 const unsigned char *info
, size_t info_len
,
31 unsigned char *okm
, size_t okm_len
) {
32 int ret
= MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED
;
33 unsigned char prk
[MBEDTLS_MD_MAX_SIZE
];
35 ret
= mbedtls_hkdf_extract(md
, salt
, salt_len
, ikm
, ikm_len
, prk
);
38 ret
= mbedtls_hkdf_expand(md
, prk
, mbedtls_md_get_size(md
),
39 info
, info_len
, okm
, okm_len
);
42 mbedtls_platform_zeroize(prk
, sizeof(prk
));
47 int mbedtls_hkdf_extract(const mbedtls_md_info_t
*md
,
48 const unsigned char *salt
, size_t salt_len
,
49 const unsigned char *ikm
, size_t ikm_len
,
51 unsigned char null_salt
[MBEDTLS_MD_MAX_SIZE
] = { '\0' };
57 return MBEDTLS_ERR_HKDF_BAD_INPUT_DATA
;
60 hash_len
= mbedtls_md_get_size(md
);
63 return MBEDTLS_ERR_HKDF_BAD_INPUT_DATA
;
70 return (mbedtls_md_hmac(md
, salt
, salt_len
, ikm
, ikm_len
, prk
));
73 int mbedtls_hkdf_expand(const mbedtls_md_info_t
*md
, const unsigned char *prk
,
74 size_t prk_len
, const unsigned char *info
,
75 size_t info_len
, unsigned char *okm
, size_t okm_len
) {
82 mbedtls_md_context_t ctx
;
83 unsigned char t
[MBEDTLS_MD_MAX_SIZE
];
86 return (MBEDTLS_ERR_HKDF_BAD_INPUT_DATA
);
89 hash_len
= mbedtls_md_get_size(md
);
91 if (prk_len
< hash_len
|| hash_len
== 0) {
92 return (MBEDTLS_ERR_HKDF_BAD_INPUT_DATA
);
96 info
= (const unsigned char *) "";
100 n
= okm_len
/ hash_len
;
102 if (okm_len
% hash_len
!= 0) {
107 * Per RFC 5869 Section 2.3, okm_len must not exceed
108 * 255 times the hash length
111 return (MBEDTLS_ERR_HKDF_BAD_INPUT_DATA
);
114 mbedtls_md_init(&ctx
);
116 if ((ret
= mbedtls_md_setup(&ctx
, md
, 1)) != 0) {
120 memset(t
, 0, hash_len
);
123 * Compute T = T(1) | T(2) | T(3) | ... | T(N)
124 * Where T(N) is defined in RFC 5869 Section 2.3
126 for (i
= 1; i
<= n
; i
++) {
128 unsigned char c
= i
& 0xff;
130 ret
= mbedtls_md_hmac_starts(&ctx
, prk
, prk_len
);
135 ret
= mbedtls_md_hmac_update(&ctx
, t
, t_len
);
140 ret
= mbedtls_md_hmac_update(&ctx
, info
, info_len
);
145 /* The constant concatenated to the end of each T(n) is a single octet.
147 ret
= mbedtls_md_hmac_update(&ctx
, &c
, 1);
152 ret
= mbedtls_md_hmac_finish(&ctx
, t
);
157 num_to_copy
= i
!= n
? hash_len
: okm_len
- where
;
158 memcpy(okm
+ where
, t
, num_to_copy
);
164 mbedtls_md_free(&ctx
);
165 mbedtls_platform_zeroize(t
, sizeof(t
));
170 #endif /* MBEDTLS_HKDF_C */