2018-02-08 19:04:43 +01:00
|
|
|
/*
|
|
|
|
* Public Key abstraction layer: wrapper functions
|
|
|
|
*
|
2020-09-05 12:53:20 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2024-01-30 14:09:13 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2018-02-08 19:04:43 +01:00
|
|
|
*/
|
|
|
|
|
2021-12-21 12:54:05 +01:00
|
|
|
#include "common.h"
|
2018-02-08 19:04:43 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_PK_C)
|
|
|
|
#include "mbedtls/pk_internal.h"
|
2021-12-21 12:54:05 +01:00
|
|
|
#include "mbedtls/error.h"
|
2018-02-08 19:04:43 +01:00
|
|
|
|
|
|
|
/* Even if RSA not activated, for the sake of RSA-alt */
|
|
|
|
#include "mbedtls/rsa.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
#include "mbedtls/ecp.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
#include "mbedtls/ecdsa.h"
|
|
|
|
#endif
|
|
|
|
|
2021-12-21 12:54:05 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
#include "mbedtls/asn1write.h"
|
|
|
|
#endif
|
|
|
|
|
2018-06-07 16:25:01 +02:00
|
|
|
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
|
|
|
|
#include "mbedtls/platform_util.h"
|
|
|
|
#endif
|
|
|
|
|
2021-12-21 12:54:05 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
#include "psa/crypto.h"
|
|
|
|
#include "mbedtls/psa_util.h"
|
|
|
|
#include "mbedtls/asn1.h"
|
|
|
|
#endif
|
|
|
|
|
2018-02-08 19:04:43 +01:00
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_can_do(mbedtls_pk_type_t type)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_RSA ||
|
|
|
|
type == MBEDTLS_PK_RSASSA_PSS;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static size_t rsa_get_bitlen(const void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
const mbedtls_rsa_context *rsa = (const mbedtls_rsa_context *) ctx;
|
2024-04-04 18:05:30 +02:00
|
|
|
/* Unfortunately, the rsa.h interface does not have a direct way
|
|
|
|
* to access the bit-length that works with MBEDTLS_RSA_ALT.
|
|
|
|
* So we have to do a little work here.
|
|
|
|
*/
|
|
|
|
mbedtls_mpi N;
|
|
|
|
mbedtls_mpi_init(&N);
|
|
|
|
int ret = mbedtls_rsa_export(rsa, &N, NULL, NULL, NULL, NULL);
|
|
|
|
/* If the export fails for some reason (e.g. the RSA_ALT implementation
|
|
|
|
* does not support export, or there is not enough memory),
|
|
|
|
* we have no way of returning an error from this function.
|
|
|
|
* As a fallback, return the byte-length converted in bits, which is
|
|
|
|
* the correct value if the modulus size is a multiple of 8 bits, which
|
|
|
|
* is very often the case in practice. */
|
|
|
|
size_t bitlen = (ret == 0 ? mbedtls_mpi_bitlen(&N) :
|
|
|
|
8 * mbedtls_rsa_get_len(rsa));
|
|
|
|
mbedtls_mpi_free(&N);
|
|
|
|
return bitlen;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_verify_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_rsa_context *rsa = (mbedtls_rsa_context *) ctx;
|
|
|
|
size_t rsa_len = mbedtls_rsa_get_len(rsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
|
|
|
#if SIZE_MAX > UINT_MAX
|
2023-04-18 10:38:24 +02:00
|
|
|
if (md_alg == MBEDTLS_MD_NONE && UINT_MAX < hash_len) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
#endif /* SIZE_MAX > UINT_MAX */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (sig_len < rsa_len) {
|
|
|
|
return MBEDTLS_ERR_RSA_VERIFY_FAILED;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = mbedtls_rsa_pkcs1_verify(rsa, NULL, NULL,
|
|
|
|
MBEDTLS_RSA_PUBLIC, md_alg,
|
|
|
|
(unsigned int) hash_len, hash, sig)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2018-06-07 16:25:01 +02:00
|
|
|
/* The buffer contains a valid signature followed by extra data.
|
|
|
|
* We have a special error code for that so that so that callers can
|
|
|
|
* use mbedtls_pk_verify() to check "Does the buffer start with a
|
|
|
|
* valid signature?" and not just "Does the buffer contain a valid
|
|
|
|
* signature?". */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (sig_len > rsa_len) {
|
|
|
|
return MBEDTLS_ERR_PK_SIG_LEN_MISMATCH;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 0;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_rsa_context *rsa = (mbedtls_rsa_context *) ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
|
|
|
|
#if SIZE_MAX > UINT_MAX
|
2023-04-18 10:38:24 +02:00
|
|
|
if (md_alg == MBEDTLS_MD_NONE && UINT_MAX < hash_len) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
#endif /* SIZE_MAX > UINT_MAX */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
*sig_len = mbedtls_rsa_get_len(rsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_rsa_pkcs1_sign(rsa, f_rng, p_rng, MBEDTLS_RSA_PRIVATE,
|
|
|
|
md_alg, (unsigned int) hash_len, hash, sig);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_decrypt_wrap(void *ctx,
|
|
|
|
const unsigned char *input, size_t ilen,
|
|
|
|
unsigned char *output, size_t *olen, size_t osize,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_rsa_context *rsa = (mbedtls_rsa_context *) ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ilen != mbedtls_rsa_get_len(rsa)) {
|
|
|
|
return MBEDTLS_ERR_RSA_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_rsa_pkcs1_decrypt(rsa, f_rng, p_rng,
|
|
|
|
MBEDTLS_RSA_PRIVATE, olen, input, output, osize);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_encrypt_wrap(void *ctx,
|
|
|
|
const unsigned char *input, size_t ilen,
|
|
|
|
unsigned char *output, size_t *olen, size_t osize,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_rsa_context *rsa = (mbedtls_rsa_context *) ctx;
|
|
|
|
*olen = mbedtls_rsa_get_len(rsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (*olen > osize) {
|
|
|
|
return MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_rsa_pkcs1_encrypt(rsa, f_rng, p_rng, MBEDTLS_RSA_PUBLIC,
|
|
|
|
ilen, input, output);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_check_pair_wrap(const void *pub, const void *prv)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_rsa_check_pub_priv((const mbedtls_rsa_context *) pub,
|
|
|
|
(const mbedtls_rsa_context *) prv);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *rsa_alloc_wrap(void)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(mbedtls_rsa_context));
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
|
|
|
mbedtls_rsa_init((mbedtls_rsa_context *) ctx, 0, 0);
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void rsa_free_wrap(void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_rsa_free((mbedtls_rsa_context *) ctx);
|
|
|
|
mbedtls_free(ctx);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void rsa_debug(const void *ctx, mbedtls_pk_debug_item *items)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
items->type = MBEDTLS_PK_DEBUG_MPI;
|
|
|
|
items->name = "rsa.N";
|
2023-04-18 10:38:24 +02:00
|
|
|
items->value = &(((mbedtls_rsa_context *) ctx)->N);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
|
|
|
items++;
|
|
|
|
|
|
|
|
items->type = MBEDTLS_PK_DEBUG_MPI;
|
|
|
|
items->name = "rsa.E";
|
2023-04-18 10:38:24 +02:00
|
|
|
items->value = &(((mbedtls_rsa_context *) ctx)->E);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const mbedtls_pk_info_t mbedtls_rsa_info = {
|
|
|
|
MBEDTLS_PK_RSA,
|
|
|
|
"RSA",
|
|
|
|
rsa_get_bitlen,
|
|
|
|
rsa_can_do,
|
|
|
|
rsa_verify_wrap,
|
|
|
|
rsa_sign_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
rsa_decrypt_wrap,
|
|
|
|
rsa_encrypt_wrap,
|
|
|
|
rsa_check_pair_wrap,
|
|
|
|
rsa_alloc_wrap,
|
|
|
|
rsa_free_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
rsa_debug,
|
|
|
|
};
|
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
/*
|
|
|
|
* Generic EC key
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckey_can_do(mbedtls_pk_type_t type)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_ECKEY ||
|
|
|
|
type == MBEDTLS_PK_ECKEY_DH ||
|
|
|
|
type == MBEDTLS_PK_ECDSA;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static size_t eckey_get_bitlen(const void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return ((mbedtls_ecp_keypair *) ctx)->grp.pbits;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
/* Forward declarations */
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_verify_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len);
|
|
|
|
|
|
|
|
static int ecdsa_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng);
|
|
|
|
|
|
|
|
static int eckey_verify_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-02-08 19:04:43 +01:00
|
|
|
mbedtls_ecdsa_context ecdsa;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_init(&ecdsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = mbedtls_ecdsa_from_keypair(&ecdsa, ctx)) == 0) {
|
|
|
|
ret = ecdsa_verify_wrap(&ecdsa, md_alg, hash, hash_len, sig, sig_len);
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_free(&ecdsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckey_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-02-08 19:04:43 +01:00
|
|
|
mbedtls_ecdsa_context ecdsa;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_init(&ecdsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = mbedtls_ecdsa_from_keypair(&ecdsa, ctx)) == 0) {
|
|
|
|
ret = ecdsa_sign_wrap(&ecdsa, md_alg, hash, hash_len, sig, sig_len,
|
|
|
|
f_rng, p_rng);
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_free(&ecdsa);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
/* Forward declarations */
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_verify_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len,
|
|
|
|
void *rs_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_sign_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
|
|
|
|
void *rs_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Restart context for ECDSA operations with ECKEY context
|
|
|
|
*
|
|
|
|
* We need to store an actual ECDSA context, as we need to pass the same to
|
|
|
|
* the underlying ecdsa function, so we can't create it on the fly every time.
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
typedef struct {
|
2019-02-16 17:19:46 +01:00
|
|
|
mbedtls_ecdsa_restart_ctx ecdsa_rs;
|
|
|
|
mbedtls_ecdsa_context ecdsa_ctx;
|
|
|
|
} eckey_restart_ctx;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *eckey_rs_alloc(void)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
|
|
|
eckey_restart_ctx *rs_ctx;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(eckey_restart_ctx));
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
2019-02-16 17:19:46 +01:00
|
|
|
rs_ctx = ctx;
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_restart_init(&rs_ctx->ecdsa_rs);
|
|
|
|
mbedtls_ecdsa_init(&rs_ctx->ecdsa_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void eckey_rs_free(void *ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
|
|
|
eckey_restart_ctx *rs_ctx;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx == NULL) {
|
2019-02-16 17:19:46 +01:00
|
|
|
return;
|
2023-04-18 10:38:24 +02:00
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
rs_ctx = ctx;
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_restart_free(&rs_ctx->ecdsa_rs);
|
|
|
|
mbedtls_ecdsa_free(&rs_ctx->ecdsa_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_free(ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckey_verify_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len,
|
|
|
|
void *rs_ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-02-16 17:19:46 +01:00
|
|
|
eckey_restart_ctx *rs = rs_ctx;
|
|
|
|
|
|
|
|
/* Should never happen */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rs == NULL) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
/* set up our own sub-context if needed (that is, on first run) */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rs->ecdsa_ctx.grp.pbits == 0) {
|
|
|
|
MBEDTLS_MPI_CHK(mbedtls_ecdsa_from_keypair(&rs->ecdsa_ctx, ctx));
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
MBEDTLS_MPI_CHK(ecdsa_verify_rs_wrap(&rs->ecdsa_ctx,
|
|
|
|
md_alg, hash, hash_len,
|
|
|
|
sig, sig_len, &rs->ecdsa_rs));
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
cleanup:
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckey_sign_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
|
|
|
|
void *rs_ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-02-16 17:19:46 +01:00
|
|
|
eckey_restart_ctx *rs = rs_ctx;
|
|
|
|
|
|
|
|
/* Should never happen */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rs == NULL) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
/* set up our own sub-context if needed (that is, on first run) */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rs->ecdsa_ctx.grp.pbits == 0) {
|
|
|
|
MBEDTLS_MPI_CHK(mbedtls_ecdsa_from_keypair(&rs->ecdsa_ctx, ctx));
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
MBEDTLS_MPI_CHK(ecdsa_sign_rs_wrap(&rs->ecdsa_ctx, md_alg,
|
|
|
|
hash, hash_len, sig, sig_len,
|
|
|
|
f_rng, p_rng, &rs->ecdsa_rs));
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
cleanup:
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
2018-02-08 19:04:43 +01:00
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckey_check_pair(const void *pub, const void *prv)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_ecp_check_pub_priv((const mbedtls_ecp_keypair *) pub,
|
|
|
|
(const mbedtls_ecp_keypair *) prv);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *eckey_alloc_wrap(void)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(mbedtls_ecp_keypair));
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
|
|
|
mbedtls_ecp_keypair_init(ctx);
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void eckey_free_wrap(void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecp_keypair_free((mbedtls_ecp_keypair *) ctx);
|
|
|
|
mbedtls_free(ctx);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void eckey_debug(const void *ctx, mbedtls_pk_debug_item *items)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
items->type = MBEDTLS_PK_DEBUG_ECP;
|
|
|
|
items->name = "eckey.Q";
|
2023-04-18 10:38:24 +02:00
|
|
|
items->value = &(((mbedtls_ecp_keypair *) ctx)->Q);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const mbedtls_pk_info_t mbedtls_eckey_info = {
|
|
|
|
MBEDTLS_PK_ECKEY,
|
|
|
|
"EC",
|
|
|
|
eckey_get_bitlen,
|
|
|
|
eckey_can_do,
|
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
eckey_verify_wrap,
|
|
|
|
eckey_sign_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
eckey_verify_rs_wrap,
|
|
|
|
eckey_sign_rs_wrap,
|
|
|
|
#endif
|
|
|
|
#else /* MBEDTLS_ECDSA_C */
|
2018-02-08 19:04:43 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2019-02-16 17:19:46 +01:00
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
2018-02-08 19:04:43 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
eckey_check_pair,
|
|
|
|
eckey_alloc_wrap,
|
|
|
|
eckey_free_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
eckey_rs_alloc,
|
|
|
|
eckey_rs_free,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
eckey_debug,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* EC key restricted to ECDH
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int eckeydh_can_do(mbedtls_pk_type_t type)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_ECKEY ||
|
|
|
|
type == MBEDTLS_PK_ECKEY_DH;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const mbedtls_pk_info_t mbedtls_eckeydh_info = {
|
|
|
|
MBEDTLS_PK_ECKEY_DH,
|
|
|
|
"EC_DH",
|
|
|
|
eckey_get_bitlen, /* Same underlying key structure */
|
|
|
|
eckeydh_can_do,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
eckey_check_pair,
|
|
|
|
eckey_alloc_wrap, /* Same underlying key structure */
|
|
|
|
eckey_free_wrap, /* Same underlying key structure */
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
eckey_debug, /* Same underlying key structure */
|
|
|
|
};
|
|
|
|
#endif /* MBEDTLS_ECP_C */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_can_do(mbedtls_pk_type_t type)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_ECDSA;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2021-12-21 12:54:05 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
/*
|
|
|
|
* An ASN.1 encoded signature is a sequence of two ASN.1 integers. Parse one of
|
|
|
|
* those integers and convert it to the fixed-length encoding expected by PSA.
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int extract_ecdsa_sig_int(unsigned char **from, const unsigned char *end,
|
|
|
|
unsigned char *to, size_t to_len)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t unpadded_len, padding_len;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = mbedtls_asn1_get_tag(from, end, &unpadded_len,
|
|
|
|
MBEDTLS_ASN1_INTEGER)) != 0) {
|
|
|
|
return ret;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
while (unpadded_len > 0 && **from == 0x00) {
|
|
|
|
(*from)++;
|
2021-12-21 12:54:05 +01:00
|
|
|
unpadded_len--;
|
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (unpadded_len > to_len || unpadded_len == 0) {
|
|
|
|
return MBEDTLS_ERR_ASN1_LENGTH_MISMATCH;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
padding_len = to_len - unpadded_len;
|
2023-04-18 10:38:24 +02:00
|
|
|
memset(to, 0x00, padding_len);
|
|
|
|
memcpy(to + padding_len, *from, unpadded_len);
|
|
|
|
(*from) += unpadded_len;
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 0;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a signature from an ASN.1 sequence of two integers
|
|
|
|
* to a raw {r,s} buffer. Note: the provided sig buffer must be at least
|
|
|
|
* twice as big as int_size.
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int extract_ecdsa_sig(unsigned char **p, const unsigned char *end,
|
|
|
|
unsigned char *sig, size_t int_size)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t tmp_size;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = mbedtls_asn1_get_tag(p, end, &tmp_size,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* Extract r */
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = extract_ecdsa_sig_int(p, end, sig, int_size)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
/* Extract s */
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = extract_ecdsa_sig_int(p, end, sig + int_size, int_size)) != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 0;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_verify_wrap(void *ctx_arg, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
mbedtls_ecdsa_context *ctx = ctx_arg;
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
psa_key_id_t key_id = 0;
|
|
|
|
psa_status_t status;
|
|
|
|
mbedtls_pk_context key;
|
|
|
|
int key_len;
|
|
|
|
/* see ECP_PUB_DER_MAX_BYTES in pkwrite.c */
|
|
|
|
unsigned char buf[30 + 2 * MBEDTLS_ECP_MAX_BYTES];
|
|
|
|
unsigned char *p;
|
|
|
|
mbedtls_pk_info_t pk_info = mbedtls_eckey_info;
|
|
|
|
psa_algorithm_t psa_sig_md = PSA_ALG_ECDSA_ANY;
|
|
|
|
size_t curve_bits;
|
|
|
|
psa_ecc_family_t curve =
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecc_group_to_psa(ctx->grp.id, &curve_bits);
|
|
|
|
const size_t signature_part_size = (ctx->grp.nbits + 7) / 8;
|
2021-12-21 12:54:05 +01:00
|
|
|
((void) md_alg);
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (curve == 0) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* mbedtls_pk_write_pubkey() expects a full PK context;
|
|
|
|
* re-construct one to make it happy */
|
|
|
|
key.pk_info = &pk_info;
|
|
|
|
key.pk_ctx = ctx;
|
2023-04-18 10:38:24 +02:00
|
|
|
p = buf + sizeof(buf);
|
|
|
|
key_len = mbedtls_pk_write_pubkey(&p, buf, &key);
|
|
|
|
if (key_len <= 0) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
psa_set_key_type(&attributes, PSA_KEY_TYPE_ECC_PUBLIC_KEY(curve));
|
|
|
|
psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_VERIFY_HASH);
|
|
|
|
psa_set_key_algorithm(&attributes, psa_sig_md);
|
|
|
|
|
|
|
|
status = psa_import_key(&attributes,
|
|
|
|
buf + sizeof(buf) - key_len, key_len,
|
|
|
|
&key_id);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
ret = mbedtls_psa_err_translate_pk(status);
|
2021-12-21 12:54:05 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We don't need the exported key anymore and can
|
|
|
|
* reuse its buffer for signature extraction. */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (2 * signature_part_size > sizeof(buf)) {
|
2021-12-21 12:54:05 +01:00
|
|
|
ret = MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
p = (unsigned char *) sig;
|
|
|
|
if ((ret = extract_ecdsa_sig(&p, sig + sig_len, buf,
|
|
|
|
signature_part_size)) != 0) {
|
2021-12-21 12:54:05 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (psa_verify_hash(key_id, psa_sig_md,
|
|
|
|
hash, hash_len,
|
|
|
|
buf, 2 * signature_part_size)
|
|
|
|
!= PSA_SUCCESS) {
|
|
|
|
ret = MBEDTLS_ERR_ECP_VERIFY_FAILED;
|
|
|
|
goto cleanup;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (p != sig + sig_len) {
|
2021-12-21 12:54:05 +01:00
|
|
|
ret = MBEDTLS_ERR_PK_SIG_LEN_MISMATCH;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2023-04-18 10:38:24 +02:00
|
|
|
psa_destroy_key(key_id);
|
|
|
|
return ret;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_verify_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-02-08 19:04:43 +01:00
|
|
|
((void) md_alg);
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
ret = mbedtls_ecdsa_read_signature((mbedtls_ecdsa_context *) ctx,
|
|
|
|
hash, hash_len, sig, sig_len);
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ret == MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH) {
|
|
|
|
return MBEDTLS_ERR_PK_SIG_LEN_MISMATCH;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_ecdsa_write_signature((mbedtls_ecdsa_context *) ctx,
|
|
|
|
md_alg, hash, hash_len, sig, sig_len, f_rng, p_rng);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_verify_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len,
|
|
|
|
void *rs_ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-02-16 17:19:46 +01:00
|
|
|
((void) md_alg);
|
|
|
|
|
|
|
|
ret = mbedtls_ecdsa_read_signature_restartable(
|
2023-04-18 10:38:24 +02:00
|
|
|
(mbedtls_ecdsa_context *) ctx,
|
|
|
|
hash, hash_len, sig, sig_len,
|
|
|
|
(mbedtls_ecdsa_restart_ctx *) rs_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ret == MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH) {
|
|
|
|
return MBEDTLS_ERR_PK_SIG_LEN_MISMATCH;
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ret;
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int ecdsa_sign_rs_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
|
|
|
|
void *rs_ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return mbedtls_ecdsa_write_signature_restartable(
|
|
|
|
(mbedtls_ecdsa_context *) ctx,
|
|
|
|
md_alg, hash, hash_len, sig, sig_len, f_rng, p_rng,
|
|
|
|
(mbedtls_ecdsa_restart_ctx *) rs_ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *ecdsa_alloc_wrap(void)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(mbedtls_ecdsa_context));
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
|
|
|
mbedtls_ecdsa_init((mbedtls_ecdsa_context *) ctx);
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void ecdsa_free_wrap(void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_free((mbedtls_ecdsa_context *) ctx);
|
|
|
|
mbedtls_free(ctx);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *ecdsa_rs_alloc(void)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(mbedtls_ecdsa_restart_ctx));
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
|
|
|
mbedtls_ecdsa_restart_init(ctx);
|
|
|
|
}
|
2019-02-16 17:19:46 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void ecdsa_rs_free(void *ctx)
|
2019-02-16 17:19:46 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_ecdsa_restart_free(ctx);
|
|
|
|
mbedtls_free(ctx);
|
2019-02-16 17:19:46 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_ECP_RESTARTABLE */
|
|
|
|
|
2018-02-08 19:04:43 +01:00
|
|
|
const mbedtls_pk_info_t mbedtls_ecdsa_info = {
|
|
|
|
MBEDTLS_PK_ECDSA,
|
|
|
|
"ECDSA",
|
|
|
|
eckey_get_bitlen, /* Compatible key structures */
|
|
|
|
ecdsa_can_do,
|
|
|
|
ecdsa_verify_wrap,
|
|
|
|
ecdsa_sign_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
ecdsa_verify_rs_wrap,
|
|
|
|
ecdsa_sign_rs_wrap,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
eckey_check_pair, /* Compatible key structures */
|
|
|
|
ecdsa_alloc_wrap,
|
|
|
|
ecdsa_free_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
ecdsa_rs_alloc,
|
|
|
|
ecdsa_rs_free,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
eckey_debug, /* Compatible key structures */
|
|
|
|
};
|
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
|
|
|
|
/*
|
|
|
|
* Support for alternative RSA-private implementations
|
|
|
|
*/
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_alt_can_do(mbedtls_pk_type_t type)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_RSA;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static size_t rsa_alt_get_bitlen(const void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
const mbedtls_rsa_alt_context *rsa_alt = (const mbedtls_rsa_alt_context *) ctx;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 8 * rsa_alt->key_len_func(rsa_alt->key);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_alt_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
mbedtls_rsa_alt_context *rsa_alt = (mbedtls_rsa_alt_context *) ctx;
|
|
|
|
|
|
|
|
#if SIZE_MAX > UINT_MAX
|
2023-04-18 10:38:24 +02:00
|
|
|
if (UINT_MAX < hash_len) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
#endif /* SIZE_MAX > UINT_MAX */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
*sig_len = rsa_alt->key_len_func(rsa_alt->key);
|
|
|
|
if (*sig_len > MBEDTLS_PK_SIGNATURE_MAX_SIZE) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return rsa_alt->sign_func(rsa_alt->key, f_rng, p_rng, MBEDTLS_RSA_PRIVATE,
|
|
|
|
md_alg, (unsigned int) hash_len, hash, sig);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_alt_decrypt_wrap(void *ctx,
|
|
|
|
const unsigned char *input, size_t ilen,
|
|
|
|
unsigned char *output, size_t *olen, size_t osize,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
mbedtls_rsa_alt_context *rsa_alt = (mbedtls_rsa_alt_context *) ctx;
|
|
|
|
|
|
|
|
((void) f_rng);
|
|
|
|
((void) p_rng);
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ilen != rsa_alt->key_len_func(rsa_alt->key)) {
|
|
|
|
return MBEDTLS_ERR_RSA_BAD_INPUT_DATA;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return rsa_alt->decrypt_func(rsa_alt->key,
|
|
|
|
MBEDTLS_RSA_PRIVATE, olen, input, output, osize);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2023-04-18 10:38:24 +02:00
|
|
|
static int rsa_alt_check_pair(const void *pub, const void *prv)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
|
|
|
unsigned char sig[MBEDTLS_MPI_MAX_SIZE];
|
|
|
|
unsigned char hash[32];
|
|
|
|
size_t sig_len = 0;
|
2021-12-21 12:54:05 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rsa_alt_get_bitlen(prv) != rsa_get_bitlen(pub)) {
|
|
|
|
return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED;
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
memset(hash, 0x2a, sizeof(hash));
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((ret = rsa_alt_sign_wrap((void *) prv, MBEDTLS_MD_NONE,
|
|
|
|
hash, sizeof(hash),
|
|
|
|
sig, &sig_len, NULL, NULL)) != 0) {
|
|
|
|
return ret;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (rsa_verify_wrap((void *) pub, MBEDTLS_MD_NONE,
|
|
|
|
hash, sizeof(hash), sig, sig_len) != 0) {
|
|
|
|
return MBEDTLS_ERR_RSA_KEY_CHECK_FAILED;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 0;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_RSA_C */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *rsa_alt_alloc_wrap(void)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(mbedtls_rsa_alt_context));
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (ctx != NULL) {
|
|
|
|
memset(ctx, 0, sizeof(mbedtls_rsa_alt_context));
|
|
|
|
}
|
2018-02-08 19:04:43 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void rsa_alt_free_wrap(void *ctx)
|
2018-02-08 19:04:43 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_platform_zeroize(ctx, sizeof(mbedtls_rsa_alt_context));
|
|
|
|
mbedtls_free(ctx);
|
2018-02-08 19:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const mbedtls_pk_info_t mbedtls_rsa_alt_info = {
|
|
|
|
MBEDTLS_PK_RSA_ALT,
|
|
|
|
"RSA-alt",
|
|
|
|
rsa_alt_get_bitlen,
|
|
|
|
rsa_alt_can_do,
|
|
|
|
NULL,
|
|
|
|
rsa_alt_sign_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
rsa_alt_decrypt_wrap,
|
|
|
|
NULL,
|
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
rsa_alt_check_pair,
|
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
|
|
|
rsa_alt_alloc_wrap,
|
|
|
|
rsa_alt_free_wrap,
|
2019-02-16 17:19:46 +01:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#endif
|
2018-02-08 19:04:43 +01:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */
|
|
|
|
|
2021-12-21 12:54:05 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void *pk_opaque_alloc_wrap(void)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
void *ctx = mbedtls_calloc(1, sizeof(psa_key_id_t));
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2022-12-21 12:05:54 +01:00
|
|
|
/* no _init() function to call, as calloc() already zeroized */
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return ctx;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static void pk_opaque_free_wrap(void *ctx)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
2023-04-18 10:38:24 +02:00
|
|
|
mbedtls_platform_zeroize(ctx, sizeof(psa_key_id_t));
|
|
|
|
mbedtls_free(ctx);
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static size_t pk_opaque_get_bitlen(const void *ctx)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
const psa_key_id_t *key = (const psa_key_id_t *) ctx;
|
|
|
|
size_t bits;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if (PSA_SUCCESS != psa_get_key_attributes(*key, &attributes)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
bits = psa_get_key_bits(&attributes);
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
return bits;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int pk_opaque_can_do(mbedtls_pk_type_t type)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
/* For now opaque PSA keys can only wrap ECC keypairs,
|
|
|
|
* as checked by setup_psa().
|
|
|
|
* Also, ECKEY_DH does not really make sense with the current API. */
|
2023-04-18 10:38:24 +02:00
|
|
|
return type == MBEDTLS_PK_ECKEY ||
|
|
|
|
type == MBEDTLS_PK_ECDSA;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Simultaneously convert and move raw MPI from the beginning of a buffer
|
|
|
|
* to an ASN.1 MPI at the end of the buffer.
|
|
|
|
* See also mbedtls_asn1_write_mpi().
|
|
|
|
*
|
|
|
|
* p: pointer to the end of the output buffer
|
|
|
|
* start: start of the output buffer, and also of the mpi to write at the end
|
|
|
|
* n_len: length of the mpi to read from start
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int asn1_write_mpibuf(unsigned char **p, unsigned char *start,
|
|
|
|
size_t n_len)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t len = 0;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
if ((size_t) (*p - start) < n_len) {
|
|
|
|
return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
len = n_len;
|
|
|
|
*p -= len;
|
2023-04-18 10:38:24 +02:00
|
|
|
memmove(*p, start, len);
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* ASN.1 DER encoding requires minimal length, so skip leading 0s.
|
|
|
|
* Neither r nor s should be 0, but as a failsafe measure, still detect
|
|
|
|
* that rather than overflowing the buffer in case of a PSA error. */
|
2023-04-18 10:38:24 +02:00
|
|
|
while (len > 0 && **p == 0x00) {
|
2021-12-21 12:54:05 +01:00
|
|
|
++(*p);
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this is only reached if the signature was invalid */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (len == 0) {
|
|
|
|
return MBEDTLS_ERR_PK_HW_ACCEL_FAILED;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* if the msb is 1, ASN.1 requires that we prepend a 0.
|
|
|
|
* Neither r nor s can be 0, so we can assume len > 0 at all times. */
|
2023-04-18 10:38:24 +02:00
|
|
|
if (**p & 0x80) {
|
|
|
|
if (*p - start < 1) {
|
|
|
|
return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
*--(*p) = 0x00;
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start,
|
|
|
|
MBEDTLS_ASN1_INTEGER));
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return (int) len;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Transcode signature from PSA format to ASN.1 sequence.
|
|
|
|
* See ecdsa_signature_to_asn1 in ecdsa.c, but with byte buffers instead of
|
|
|
|
* MPIs, and in-place.
|
|
|
|
*
|
|
|
|
* [in/out] sig: the signature pre- and post-transcoding
|
|
|
|
* [in/out] sig_len: signature length pre- and post-transcoding
|
|
|
|
* [int] buf_len: the available size the in/out buffer
|
|
|
|
*/
|
2023-04-18 10:38:24 +02:00
|
|
|
static int pk_ecdsa_sig_asn1_from_psa(unsigned char *sig, size_t *sig_len,
|
|
|
|
size_t buf_len)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t len = 0;
|
|
|
|
const size_t rs_len = *sig_len / 2;
|
|
|
|
unsigned char *p = sig + buf_len;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, asn1_write_mpibuf(&p, sig + rs_len, rs_len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, asn1_write_mpibuf(&p, sig, rs_len));
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&p, sig, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&p, sig,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2021-12-21 12:54:05 +01:00
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
memmove(sig, p, len);
|
2021-12-21 12:54:05 +01:00
|
|
|
*sig_len = len;
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
return 0;
|
2021-12-21 12:54:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
|
|
|
|
2023-04-18 10:38:24 +02:00
|
|
|
static int pk_opaque_sign_wrap(void *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng)
|
2021-12-21 12:54:05 +01:00
|
|
|
{
|
|
|
|
#if !defined(MBEDTLS_ECDSA_C)
|
|
|
|
((void) ctx);
|
|
|
|
((void) md_alg);
|
|
|
|
((void) hash);
|
|
|
|
((void) hash_len);
|
|
|
|
((void) sig);
|
|
|
|
((void) sig_len);
|
|
|
|
((void) f_rng);
|
|
|
|
((void) p_rng);
|
2023-04-18 10:38:24 +02:00
|
|
|
return MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE;
|
2021-12-21 12:54:05 +01:00
|
|
|
#else /* !MBEDTLS_ECDSA_C */
|
|
|
|
const psa_key_id_t *key = (const psa_key_id_t *) ctx;
|
|
|
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
2023-04-18 10:38:24 +02:00
|
|
|
psa_algorithm_t alg = PSA_ALG_ECDSA(mbedtls_psa_translate_md(md_alg));
|
2021-12-21 12:54:05 +01:00
|
|
|
size_t buf_len;
|
|
|
|
psa_status_t status;
|
|
|
|
|
|
|
|
/* PSA has its own RNG */
|
|
|
|
(void) f_rng;
|
|
|
|
(void) p_rng;
|
|
|
|
|
|
|
|
/* PSA needs an output buffer of known size, but our API doesn't provide
|
|
|
|
* that information. Assume that the buffer is large enough for a
|
|
|
|
* maximal-length signature with that key (otherwise the application is
|
|
|
|
* buggy anyway). */
|
2023-04-18 10:38:24 +02:00
|
|
|
status = psa_get_key_attributes(*key, &attributes);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
return mbedtls_psa_err_translate_pk(status);
|
|
|
|
}
|
|
|
|
buf_len = MBEDTLS_ECDSA_MAX_SIG_LEN(psa_get_key_bits(&attributes));
|
|
|
|
psa_reset_key_attributes(&attributes);
|
|
|
|
if (buf_len > MBEDTLS_PK_SIGNATURE_MAX_SIZE) {
|
|
|
|
return MBEDTLS_ERR_PK_BAD_INPUT_DATA;
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* make the signature */
|
2023-04-18 10:38:24 +02:00
|
|
|
status = psa_sign_hash(*key, alg, hash, hash_len,
|
|
|
|
sig, buf_len, sig_len);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
return mbedtls_psa_err_translate_pk(status);
|
|
|
|
}
|
2021-12-21 12:54:05 +01:00
|
|
|
|
|
|
|
/* transcode it to ASN.1 sequence */
|
2023-04-18 10:38:24 +02:00
|
|
|
return pk_ecdsa_sig_asn1_from_psa(sig, sig_len, buf_len);
|
2021-12-21 12:54:05 +01:00
|
|
|
#endif /* !MBEDTLS_ECDSA_C */
|
|
|
|
}
|
|
|
|
|
|
|
|
const mbedtls_pk_info_t mbedtls_pk_opaque_info = {
|
|
|
|
MBEDTLS_PK_OPAQUE,
|
|
|
|
"Opaque",
|
|
|
|
pk_opaque_get_bitlen,
|
|
|
|
pk_opaque_can_do,
|
|
|
|
NULL, /* verify - will be done later */
|
|
|
|
pk_opaque_sign_wrap,
|
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL, /* restartable verify - not relevant */
|
|
|
|
NULL, /* restartable sign - not relevant */
|
|
|
|
#endif
|
|
|
|
NULL, /* decrypt - will be done later */
|
|
|
|
NULL, /* encrypt - will be done later */
|
|
|
|
NULL, /* check_pair - could be done later or left NULL */
|
|
|
|
pk_opaque_alloc_wrap,
|
|
|
|
pk_opaque_free_wrap,
|
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
NULL, /* restart alloc - not relevant */
|
|
|
|
NULL, /* restart free - not relevant */
|
|
|
|
#endif
|
|
|
|
NULL, /* debug - could be done later, or even left NULL */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2018-02-08 19:04:43 +01:00
|
|
|
#endif /* MBEDTLS_PK_C */
|