2013-01-26 15:30:46 +01:00
|
|
|
/*
|
|
|
|
* Elliptic curve Diffie-Hellman
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-01-26 15:30:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* References:
|
|
|
|
*
|
2023-04-12 08:07:23 +02:00
|
|
|
* SEC1 https://www.secg.org/sec1-v2.pdf
|
2013-02-10 14:21:04 +01:00
|
|
|
* RFC 4492
|
2013-01-26 15:30:46 +01:00
|
|
|
*/
|
|
|
|
|
2020-06-03 01:43:33 +02:00
|
|
|
#include "common.h"
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_C)
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ecdh.h"
|
2018-12-17 19:10:51 +01:00
|
|
|
#include "mbedtls/platform_util.h"
|
2019-11-22 14:21:35 +01:00
|
|
|
#include "mbedtls/error.h"
|
2021-09-14 13:30:36 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2018-08-13 16:54:22 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
|
|
|
typedef mbedtls_ecdh_context mbedtls_ecdh_context_mbed;
|
|
|
|
#endif
|
|
|
|
|
2019-02-22 12:31:25 +01:00
|
|
|
static mbedtls_ecp_group_id mbedtls_ecdh_grp_id(
|
2023-01-11 14:50:10 +01:00
|
|
|
const mbedtls_ecdh_context *ctx)
|
2019-02-22 12:31:25 +01:00
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ctx->grp.id;
|
2019-02-22 12:31:25 +01:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
return ctx->grp_id;
|
2019-02-22 12:31:25 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_can_do(mbedtls_ecp_group_id gid)
|
2019-02-11 18:41:27 +01:00
|
|
|
{
|
|
|
|
/* At this time, all groups support ECDH. */
|
|
|
|
(void) gid;
|
2023-01-11 14:50:10 +01:00
|
|
|
return 1;
|
2019-02-11 18:41:27 +01:00
|
|
|
}
|
|
|
|
|
2017-10-10 18:04:27 +02:00
|
|
|
#if !defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT)
|
2013-01-26 16:05:22 +01:00
|
|
|
/*
|
2017-04-27 11:38:26 +02:00
|
|
|
* Generate public key (restartable version)
|
2018-10-16 10:38:19 +02:00
|
|
|
*
|
|
|
|
* Note: this internal function relies on its caller preserving the value of
|
2018-10-22 09:56:53 +02:00
|
|
|
* the output parameter 'd' across continuation calls. This would not be
|
2018-10-16 10:38:19 +02:00
|
|
|
* acceptable for a public function but is OK here as we control call sites.
|
2017-04-27 11:38:26 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_gen_public_restartable(mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx)
|
2017-04-27 11:38:26 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2017-04-27 11:38:26 +02:00
|
|
|
|
2022-10-06 20:11:28 +02:00
|
|
|
int restarting = 0;
|
2017-04-27 11:38:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
restarting = (rs_ctx != NULL && rs_ctx->rsm != NULL);
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
2022-10-06 20:11:28 +02:00
|
|
|
/* If multiplication is in progress, we already generated a privkey */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!restarting) {
|
|
|
|
MBEDTLS_MPI_CHK(mbedtls_ecp_gen_privkey(grp, d, f_rng, p_rng));
|
|
|
|
}
|
2017-04-27 11:38:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_MPI_CHK(mbedtls_ecp_mul_restartable(grp, Q, d, &grp->G,
|
|
|
|
f_rng, p_rng, rs_ctx));
|
2017-04-27 11:38:26 +02:00
|
|
|
|
|
|
|
cleanup:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ret;
|
2017-04-27 11:38:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate public key
|
2013-01-26 16:05:22 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_gen_public(mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2013-01-26 16:05:22 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_gen_public_restartable(grp, d, Q, f_rng, p_rng, NULL);
|
2013-01-26 16:05:22 +01:00
|
|
|
}
|
2018-11-01 12:05:52 +01:00
|
|
|
#endif /* !MBEDTLS_ECDH_GEN_PUBLIC_ALT */
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2017-10-10 18:04:27 +02:00
|
|
|
#if !defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT)
|
2013-01-26 16:05:22 +01:00
|
|
|
/*
|
|
|
|
* Compute shared secret (SEC1 3.3.1)
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_compute_shared_restartable(mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *z,
|
|
|
|
const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx)
|
2013-01-26 16:05:22 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point P;
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_point_init(&P);
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_MPI_CHK(mbedtls_ecp_mul_restartable(grp, &P, d, Q,
|
|
|
|
f_rng, p_rng, rs_ctx));
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_ecp_is_zero(&P)) {
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2013-07-26 14:21:34 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_MPI_CHK(mbedtls_mpi_copy(z, &P.X));
|
2013-01-26 16:05:22 +01:00
|
|
|
|
|
|
|
cleanup:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_point_free(&P);
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return ret;
|
2013-01-26 16:05:22 +01:00
|
|
|
}
|
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
/*
|
|
|
|
* Compute shared secret (SEC1 3.3.1)
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_compute_shared(mbedtls_ecp_group *grp, mbedtls_mpi *z,
|
|
|
|
const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2017-04-27 11:38:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_compute_shared_restartable(grp, z, Q, d,
|
|
|
|
f_rng, p_rng, NULL);
|
2017-04-27 11:38:26 +02:00
|
|
|
}
|
2018-11-01 12:05:52 +01:00
|
|
|
#endif /* !MBEDTLS_ECDH_COMPUTE_SHARED_ALT */
|
2017-04-27 11:38:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static void ecdh_init_internal(mbedtls_ecdh_context_mbed *ctx)
|
2013-02-10 14:21:04 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_group_init(&ctx->grp);
|
|
|
|
mbedtls_mpi_init(&ctx->d);
|
|
|
|
mbedtls_ecp_point_init(&ctx->Q);
|
|
|
|
mbedtls_ecp_point_init(&ctx->Qp);
|
|
|
|
mbedtls_mpi_init(&ctx->z);
|
2018-08-13 16:54:22 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_restart_init(&ctx->rs);
|
2018-08-13 16:54:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize context
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_ecdh_init(mbedtls_ecdh_context *ctx)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
ecdh_init_internal(ctx);
|
|
|
|
mbedtls_ecp_point_init(&ctx->Vi);
|
|
|
|
mbedtls_ecp_point_init(&ctx->Vf);
|
|
|
|
mbedtls_mpi_init(&ctx->_d);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(ctx, 0, sizeof(mbedtls_ecdh_context));
|
2019-02-20 18:16:53 +01:00
|
|
|
|
2018-08-13 16:54:22 +02:00
|
|
|
ctx->var = MBEDTLS_ECDH_VARIANT_NONE;
|
|
|
|
#endif
|
|
|
|
ctx->point_format = MBEDTLS_ECP_PF_UNCOMPRESSED;
|
2017-04-27 11:38:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-23 16:55:59 +02:00
|
|
|
ctx->restart_enabled = 0;
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
2013-02-10 14:21:04 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_setup_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
mbedtls_ecp_group_id grp_id)
|
2018-10-30 12:53:25 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-10-30 12:53:25 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_ecp_group_load(&ctx->grp, grp_id);
|
|
|
|
if (ret != 0) {
|
|
|
|
return MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE;
|
2018-10-30 12:53:25 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2018-10-30 12:53:25 +01:00
|
|
|
}
|
|
|
|
|
2013-02-10 14:21:04 +01:00
|
|
|
/*
|
2018-08-13 16:54:22 +02:00
|
|
|
* Setup context
|
2013-02-10 14:21:04 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_setup(mbedtls_ecdh_context *ctx, mbedtls_ecp_group_id grp_id)
|
2013-02-10 14:21:04 +01:00
|
|
|
{
|
2018-08-13 16:54:22 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_setup_internal(ctx, grp_id);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (grp_id) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
2019-02-15 13:59:59 +01:00
|
|
|
case MBEDTLS_ECP_DP_CURVE25519:
|
|
|
|
ctx->point_format = MBEDTLS_ECP_PF_COMPRESSED;
|
|
|
|
ctx->var = MBEDTLS_ECDH_VARIANT_EVEREST;
|
|
|
|
ctx->grp_id = grp_id;
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_setup(&ctx->ctx.everest_ecdh, grp_id);
|
2018-12-06 18:16:32 +01:00
|
|
|
#endif
|
2019-02-15 13:59:59 +01:00
|
|
|
default:
|
|
|
|
ctx->point_format = MBEDTLS_ECP_PF_UNCOMPRESSED;
|
|
|
|
ctx->var = MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0;
|
|
|
|
ctx->grp_id = grp_id;
|
2023-01-11 14:50:10 +01:00
|
|
|
ecdh_init_internal(&ctx->ctx.mbed_ecdh);
|
|
|
|
return ecdh_setup_internal(&ctx->ctx.mbed_ecdh, grp_id);
|
2018-08-13 16:54:22 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static void ecdh_free_internal(mbedtls_ecdh_context_mbed *ctx)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_group_free(&ctx->grp);
|
|
|
|
mbedtls_mpi_free(&ctx->d);
|
|
|
|
mbedtls_ecp_point_free(&ctx->Q);
|
|
|
|
mbedtls_ecp_point_free(&ctx->Qp);
|
|
|
|
mbedtls_mpi_free(&ctx->z);
|
2017-04-27 11:38:26 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_restart_free(&ctx->rs);
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
2013-02-10 14:21:04 +01:00
|
|
|
}
|
|
|
|
|
2017-05-18 12:35:37 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
/*
|
|
|
|
* Enable restartable operations for context
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_ecdh_enable_restart(mbedtls_ecdh_context *ctx)
|
2017-05-18 12:35:37 +02:00
|
|
|
{
|
|
|
|
ctx->restart_enabled = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-10 15:01:54 +01:00
|
|
|
/*
|
2018-08-13 16:54:22 +02:00
|
|
|
* Free context
|
2013-02-10 15:01:54 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_ecdh_free(mbedtls_ecdh_context *ctx)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx == NULL) {
|
2018-08-13 16:54:22 +02:00
|
|
|
return;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ecp_point_free(&ctx->Vi);
|
|
|
|
mbedtls_ecp_point_free(&ctx->Vf);
|
|
|
|
mbedtls_mpi_free(&ctx->_d);
|
|
|
|
ecdh_free_internal(ctx);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_everest_free(&ctx->ctx.everest_ecdh);
|
2018-10-25 14:03:05 +02:00
|
|
|
break;
|
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
ecdh_free_internal(&ctx->ctx.mbed_ecdh);
|
2018-08-13 16:54:22 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->point_format = MBEDTLS_ECP_PF_UNCOMPRESSED;
|
|
|
|
ctx->var = MBEDTLS_ECDH_VARIANT_NONE;
|
|
|
|
ctx->grp_id = MBEDTLS_ECP_DP_NONE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_make_params_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
size_t *olen, int point_format,
|
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *,
|
|
|
|
unsigned char *,
|
|
|
|
size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int restart_enabled)
|
2013-02-10 15:01:54 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-02-10 15:01:54 +01:00
|
|
|
size_t grp_len, pt_len;
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2018-11-01 12:05:52 +01:00
|
|
|
#endif
|
2013-02-10 15:01:54 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx->grp.pbits == 0) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2018-11-05 15:58:13 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (restart_enabled) {
|
2017-05-18 12:35:37 +02:00
|
|
|
rs_ctx = &ctx->rs;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
|
|
|
(void) restart_enabled;
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
|
|
|
|
2018-11-01 10:32:15 +01:00
|
|
|
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = ecdh_gen_public_restartable(&ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng, rs_ctx)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-11-05 17:07:10 +01:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecdh_gen_public(&ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-11-05 17:07:10 +01:00
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2013-02-10 15:01:54 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecp_tls_write_group(&ctx->grp, &grp_len, buf,
|
|
|
|
blen)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-02-10 15:01:54 +01:00
|
|
|
|
|
|
|
buf += grp_len;
|
|
|
|
blen -= grp_len;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecp_tls_write_point(&ctx->grp, &ctx->Q, point_format,
|
|
|
|
&pt_len, buf, blen)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-02-10 15:01:54 +01:00
|
|
|
|
|
|
|
*olen = grp_len + pt_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-02-10 15:01:54 +01:00
|
|
|
}
|
|
|
|
|
2018-08-13 16:54:22 +02:00
|
|
|
/*
|
2018-10-25 14:03:05 +02:00
|
|
|
* Setup and write the ServerKeyExchange parameters (RFC 4492)
|
2018-08-13 16:54:22 +02:00
|
|
|
* struct {
|
|
|
|
* ECParameters curve_params;
|
|
|
|
* ECPoint public;
|
|
|
|
* } ServerECDHParams;
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_make_params(mbedtls_ecdh_context *ctx, size_t *olen,
|
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
|
|
|
int restart_enabled = 0;
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
restart_enabled = ctx->restart_enabled;
|
|
|
|
#else
|
|
|
|
(void) restart_enabled;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_make_params_internal(ctx, olen, ctx->point_format, buf, blen,
|
|
|
|
f_rng, p_rng, restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_make_params(&ctx->ctx.everest_ecdh, olen,
|
|
|
|
buf, blen, f_rng, p_rng);
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_make_params_internal(&ctx->ctx.mbed_ecdh, olen,
|
|
|
|
ctx->point_format, buf, blen,
|
|
|
|
f_rng, p_rng,
|
|
|
|
restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_read_params_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
const unsigned char **buf,
|
|
|
|
const unsigned char *end)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_ecp_tls_read_point(&ctx->grp, &ctx->Qp, buf,
|
|
|
|
end - *buf);
|
2018-08-13 16:54:22 +02:00
|
|
|
}
|
|
|
|
|
2013-02-11 20:28:55 +01:00
|
|
|
/*
|
2022-05-18 01:30:44 +02:00
|
|
|
* Read the ServerKeyExchange parameters (RFC 4492)
|
2013-02-11 20:28:55 +01:00
|
|
|
* struct {
|
|
|
|
* ECParameters curve_params;
|
|
|
|
* ECPoint public;
|
|
|
|
* } ServerECDHParams;
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_read_params(mbedtls_ecdh_context *ctx,
|
|
|
|
const unsigned char **buf,
|
|
|
|
const unsigned char *end)
|
2013-02-11 20:28:55 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-10-30 12:53:25 +01:00
|
|
|
mbedtls_ecp_group_id grp_id;
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecp_tls_read_group_id(&grp_id, buf, end - *buf))
|
|
|
|
!= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-02-11 20:28:55 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecdh_setup(ctx, grp_id)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-10-30 12:53:25 +01:00
|
|
|
|
2018-08-13 16:54:22 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_read_params_internal(ctx, buf, end);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_read_params(&ctx->ctx.everest_ecdh,
|
|
|
|
buf, end);
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_read_params_internal(&ctx->ctx.mbed_ecdh,
|
|
|
|
buf, end);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
#endif
|
2013-02-11 20:28:55 +01:00
|
|
|
}
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_get_params_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
const mbedtls_ecp_keypair *key,
|
|
|
|
mbedtls_ecdh_side side)
|
2013-12-12 09:55:52 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-12-12 09:55:52 +01:00
|
|
|
|
|
|
|
/* If it's not our key, just import the public part as Qp */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (side == MBEDTLS_ECDH_THEIRS) {
|
|
|
|
return mbedtls_ecp_copy(&ctx->Qp, &key->Q);
|
|
|
|
}
|
2013-12-12 09:55:52 +01:00
|
|
|
|
|
|
|
/* Our key: import public (as Q) and private parts */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (side != MBEDTLS_ECDH_OURS) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-12-12 09:55:52 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecp_copy(&ctx->Q, &key->Q)) != 0 ||
|
|
|
|
(ret = mbedtls_mpi_copy(&ctx->d, &key->d)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-12-12 09:55:52 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-12-12 09:55:52 +01:00
|
|
|
}
|
|
|
|
|
2013-02-11 21:51:45 +01:00
|
|
|
/*
|
2018-08-13 16:54:22 +02:00
|
|
|
* Get parameters from a keypair
|
2013-02-11 21:51:45 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_get_params(mbedtls_ecdh_context *ctx,
|
|
|
|
const mbedtls_ecp_keypair *key,
|
|
|
|
mbedtls_ecdh_side side)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2023-01-11 14:50:10 +01:00
|
|
|
if (side != MBEDTLS_ECDH_OURS && side != MBEDTLS_ECDH_THEIRS) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_ecdh_grp_id(ctx) == MBEDTLS_ECP_DP_NONE) {
|
2018-11-07 22:10:59 +01:00
|
|
|
/* This is the first call to get_params(). Set up the context
|
|
|
|
* for use with the group. */
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecdh_setup(ctx, key->grp.id)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
} else {
|
2018-11-07 22:10:59 +01:00
|
|
|
/* This is not the first call to get_params(). Check that the
|
|
|
|
* current key's group is the same as the context's, which was set
|
|
|
|
* from the first key's group. */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_ecdh_grp_id(ctx) != key->grp.id) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-11-07 22:10:59 +01:00
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_get_params_internal(ctx, key, side);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2018-12-12 18:26:41 +01:00
|
|
|
{
|
2019-01-07 15:19:41 +01:00
|
|
|
mbedtls_everest_ecdh_side s = side == MBEDTLS_ECDH_OURS ?
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_EVEREST_ECDH_OURS :
|
|
|
|
MBEDTLS_EVEREST_ECDH_THEIRS;
|
|
|
|
return mbedtls_everest_get_params(&ctx->ctx.everest_ecdh,
|
|
|
|
key, s);
|
2018-12-12 18:26:41 +01:00
|
|
|
}
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_get_params_internal(&ctx->ctx.mbed_ecdh,
|
|
|
|
key, side);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_make_public_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
size_t *olen, int point_format,
|
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *,
|
|
|
|
unsigned char *,
|
|
|
|
size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int restart_enabled)
|
2013-02-11 21:51:45 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2018-11-01 12:05:52 +01:00
|
|
|
#endif
|
2013-02-11 21:51:45 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx->grp.pbits == 0) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2018-11-05 16:18:29 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (restart_enabled) {
|
2017-05-18 12:35:37 +02:00
|
|
|
rs_ctx = &ctx->rs;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
|
|
|
(void) restart_enabled;
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
|
|
|
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = ecdh_gen_public_restartable(&ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng, rs_ctx)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-11-05 17:07:10 +01:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecdh_gen_public(&ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-11-05 17:07:10 +01:00
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2013-02-11 21:51:45 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_ecp_tls_write_point(&ctx->grp, &ctx->Q, point_format, olen,
|
|
|
|
buf, blen);
|
2013-02-11 21:51:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-08-13 16:54:22 +02:00
|
|
|
* Setup and export the client public value
|
2013-02-11 21:51:45 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_make_public(mbedtls_ecdh_context *ctx, size_t *olen,
|
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2013-02-11 21:51:45 +01:00
|
|
|
{
|
2018-08-13 16:54:22 +02:00
|
|
|
int restart_enabled = 0;
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
restart_enabled = ctx->restart_enabled;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_make_public_internal(ctx, olen, ctx->point_format, buf, blen,
|
|
|
|
f_rng, p_rng, restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_make_public(&ctx->ctx.everest_ecdh, olen,
|
|
|
|
buf, blen, f_rng, p_rng);
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_make_public_internal(&ctx->ctx.mbed_ecdh, olen,
|
|
|
|
ctx->point_format, buf, blen,
|
|
|
|
f_rng, p_rng,
|
|
|
|
restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_read_public_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
const unsigned char *buf, size_t blen)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-08-13 16:54:22 +02:00
|
|
|
const unsigned char *p = buf;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecp_tls_read_point(&ctx->grp, &ctx->Qp, &p,
|
|
|
|
blen)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2014-03-26 19:53:25 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((size_t) (p - buf) != blen) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2014-03-26 19:53:25 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-02-11 21:51:45 +01:00
|
|
|
}
|
|
|
|
|
2013-02-11 22:05:42 +01:00
|
|
|
/*
|
2018-08-13 16:54:22 +02:00
|
|
|
* Parse and import the client's public value
|
2013-02-11 22:05:42 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_read_public(mbedtls_ecdh_context *ctx,
|
|
|
|
const unsigned char *buf, size_t blen)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_read_public_internal(ctx, buf, blen);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_read_public(&ctx->ctx.everest_ecdh,
|
|
|
|
buf, blen);
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_read_public_internal(&ctx->ctx.mbed_ecdh,
|
|
|
|
buf, blen);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ecdh_calc_secret_internal(mbedtls_ecdh_context_mbed *ctx,
|
|
|
|
size_t *olen, unsigned char *buf,
|
|
|
|
size_t blen,
|
|
|
|
int (*f_rng)(void *,
|
|
|
|
unsigned char *,
|
|
|
|
size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int restart_enabled)
|
2013-02-11 22:05:42 +01:00
|
|
|
{
|
2019-11-22 14:21:35 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2018-11-01 12:05:52 +01:00
|
|
|
#endif
|
2013-02-11 22:05:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx == NULL || ctx->grp.pbits == 0) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2018-11-05 16:18:29 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (restart_enabled) {
|
2017-05-18 12:35:37 +02:00
|
|
|
rs_ctx = &ctx->rs;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
|
|
|
(void) restart_enabled;
|
2017-04-27 11:38:26 +02:00
|
|
|
#endif
|
|
|
|
|
2018-11-05 17:07:10 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = ecdh_compute_shared_restartable(&ctx->grp, &ctx->z, &ctx->Qp,
|
|
|
|
&ctx->d, f_rng, p_rng,
|
|
|
|
rs_ctx)) != 0) {
|
|
|
|
return ret;
|
2018-11-01 10:32:15 +01:00
|
|
|
}
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ecdh_compute_shared(&ctx->grp, &ctx->z, &ctx->Qp,
|
|
|
|
&ctx->d, f_rng, p_rng)) != 0) {
|
|
|
|
return ret;
|
2013-09-02 14:29:09 +02:00
|
|
|
}
|
2018-11-05 17:07:10 +01:00
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2013-02-11 22:05:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_mpi_size(&ctx->z) > blen) {
|
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
*olen = ctx->grp.pbits / 8 + ((ctx->grp.pbits % 8) != 0);
|
2019-02-20 11:48:49 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_ecp_get_type(&ctx->grp) == MBEDTLS_ECP_TYPE_MONTGOMERY) {
|
|
|
|
return mbedtls_mpi_write_binary_le(&ctx->z, buf, *olen);
|
|
|
|
}
|
2019-02-20 11:48:49 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_mpi_write_binary(&ctx->z, buf, *olen);
|
2013-02-11 22:05:42 +01:00
|
|
|
}
|
|
|
|
|
2018-08-13 16:54:22 +02:00
|
|
|
/*
|
|
|
|
* Derive and export the shared secret
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ecdh_calc_secret(mbedtls_ecdh_context *ctx, size_t *olen,
|
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2018-08-13 16:54:22 +02:00
|
|
|
{
|
|
|
|
int restart_enabled = 0;
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
restart_enabled = ctx->restart_enabled;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_calc_secret_internal(ctx, olen, buf, blen, f_rng, p_rng,
|
|
|
|
restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
switch (ctx->var) {
|
2018-10-25 14:03:05 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
|
|
|
case MBEDTLS_ECDH_VARIANT_EVEREST:
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_everest_calc_secret(&ctx->ctx.everest_ecdh, olen,
|
|
|
|
buf, blen, f_rng, p_rng);
|
2018-10-25 14:03:05 +02:00
|
|
|
#endif
|
2018-08-13 16:54:22 +02:00
|
|
|
case MBEDTLS_ECDH_VARIANT_MBEDTLS_2_0:
|
2023-01-11 14:50:10 +01:00
|
|
|
return ecdh_calc_secret_internal(&ctx->ctx.mbed_ecdh, olen, buf,
|
|
|
|
blen, f_rng, p_rng,
|
|
|
|
restart_enabled);
|
2018-08-13 16:54:22 +02:00
|
|
|
default:
|
2023-01-11 14:50:10 +01:00
|
|
|
return MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2018-08-13 16:54:22 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECDH_C */
|