2013-07-04 13:31:32 +02:00
|
|
|
/*
|
|
|
|
* Public Key abstraction layer
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-07-04 13:31:32 +02: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-07-04 13:31:32 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-04 13:31:32 +02: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-07-04 13:31:32 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-07-04 13:31:32 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2013-07-04 13:31:32 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/pk.h"
|
2015-05-26 11:04:15 +02:00
|
|
|
#include "mbedtls/pk_internal.h"
|
2013-07-09 10:35:54 +02:00
|
|
|
|
2018-04-17 16:51:09 +02:00
|
|
|
#include "mbedtls/platform_util.h"
|
2017-01-19 12:24:33 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/rsa.h"
|
2013-07-09 10:35:54 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ecp.h"
|
2013-07-09 10:35:54 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ecdsa.h"
|
2013-07-10 12:29:57 +02:00
|
|
|
#endif
|
2013-07-04 13:31:32 +02:00
|
|
|
|
2018-11-19 12:25:37 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
#include "mbedtls/psa_util.h"
|
|
|
|
#endif
|
|
|
|
|
2017-01-19 12:24:33 +01:00
|
|
|
#include <limits.h>
|
2017-08-04 14:32:15 +02:00
|
|
|
#include <stdint.h>
|
2014-06-13 17:20:13 +02:00
|
|
|
|
2013-07-04 13:31:32 +02:00
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Initialise a mbedtls_pk_context
|
2013-07-04 13:31:32 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_pk_init( mbedtls_pk_context *ctx )
|
2013-07-04 13:31:32 +02:00
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
ctx->pk_info = NULL;
|
|
|
|
ctx->pk_ctx = NULL;
|
2013-07-04 13:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Free (the components of) a mbedtls_pk_context
|
2013-07-04 13:31:32 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_pk_free( mbedtls_pk_context *ctx )
|
2013-07-04 13:31:32 +02:00
|
|
|
{
|
2014-06-17 16:39:18 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2013-07-04 13:31:32 +02:00
|
|
|
return;
|
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
ctx->pk_info->ctx_free_func( ctx->pk_ctx );
|
2013-08-14 15:00:27 +02:00
|
|
|
|
2018-04-17 16:51:09 +02:00
|
|
|
mbedtls_platform_zeroize( ctx, sizeof( mbedtls_pk_context ) );
|
2013-08-14 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
2017-08-18 17:30:37 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-17 14:33:31 +02:00
|
|
|
/*
|
|
|
|
* Initialize a restart context
|
|
|
|
*/
|
|
|
|
void mbedtls_pk_restart_init( mbedtls_pk_restart_ctx *ctx )
|
|
|
|
{
|
2017-08-18 16:22:06 +02:00
|
|
|
ctx->pk_info = NULL;
|
|
|
|
ctx->rs_ctx = NULL;
|
2017-08-17 14:33:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the components of a restart context
|
|
|
|
*/
|
|
|
|
void mbedtls_pk_restart_free( mbedtls_pk_restart_ctx *ctx )
|
|
|
|
{
|
2017-08-18 16:22:06 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL ||
|
|
|
|
ctx->pk_info->rs_free_func == NULL )
|
|
|
|
{
|
2017-08-17 14:33:31 +02:00
|
|
|
return;
|
2017-08-18 16:22:06 +02:00
|
|
|
}
|
2017-08-17 14:33:31 +02:00
|
|
|
|
2017-08-18 16:22:06 +02:00
|
|
|
ctx->pk_info->rs_free_func( ctx->rs_ctx );
|
|
|
|
|
|
|
|
ctx->pk_info = NULL;
|
|
|
|
ctx->rs_ctx = NULL;
|
2017-08-17 14:33:31 +02:00
|
|
|
}
|
2017-08-18 17:30:37 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-08-17 14:33:31 +02:00
|
|
|
|
2013-08-14 15:00:27 +02:00
|
|
|
/*
|
|
|
|
* Get pk_info structure from type
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t * mbedtls_pk_info_from_type( mbedtls_pk_type_t pk_type )
|
2013-08-14 15:00:27 +02:00
|
|
|
{
|
|
|
|
switch( pk_type ) {
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
case MBEDTLS_PK_RSA:
|
|
|
|
return( &mbedtls_rsa_info );
|
2013-07-09 10:35:54 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
case MBEDTLS_PK_ECKEY:
|
|
|
|
return( &mbedtls_eckey_info );
|
|
|
|
case MBEDTLS_PK_ECKEY_DH:
|
|
|
|
return( &mbedtls_eckeydh_info );
|
2013-07-09 10:35:54 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
case MBEDTLS_PK_ECDSA:
|
|
|
|
return( &mbedtls_ecdsa_info );
|
2013-07-10 12:29:57 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
/* MBEDTLS_PK_RSA_ALT omitted on purpose */
|
2013-08-14 15:00:27 +02:00
|
|
|
default:
|
2014-06-17 14:06:49 +02:00
|
|
|
return( NULL );
|
2013-07-04 13:31:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-08-15 11:30:27 +02:00
|
|
|
* Initialise context
|
2013-07-04 13:31:32 +02:00
|
|
|
*/
|
2015-05-14 19:41:36 +02:00
|
|
|
int mbedtls_pk_setup( mbedtls_pk_context *ctx, const mbedtls_pk_info_t *info )
|
2013-07-04 13:31:32 +02:00
|
|
|
{
|
2013-08-15 11:30:27 +02:00
|
|
|
if( ctx == NULL || info == NULL || ctx->pk_info != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-07-04 13:31:32 +02:00
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
if( ( ctx->pk_ctx = info->ctx_alloc_func() ) == NULL )
|
2015-05-28 09:33:39 +02:00
|
|
|
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
2013-07-04 13:31:32 +02:00
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
ctx->pk_info = info;
|
2013-07-04 13:31:32 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-14 15:56:19 +02:00
|
|
|
|
2018-10-22 12:11:15 +02:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
/*
|
|
|
|
* Initialise a PSA-wrapping context
|
|
|
|
*/
|
2019-01-08 15:36:01 +01:00
|
|
|
int mbedtls_pk_setup_opaque( mbedtls_pk_context *ctx, const psa_key_handle_t key )
|
2018-10-22 12:11:15 +02:00
|
|
|
{
|
2018-11-06 09:34:30 +01:00
|
|
|
const mbedtls_pk_info_t * const info = &mbedtls_pk_opaque_info;
|
2019-01-08 15:36:01 +01:00
|
|
|
psa_key_handle_t *pk_ctx;
|
2018-10-31 10:57:29 +01:00
|
|
|
psa_key_type_t type;
|
2018-10-22 12:11:15 +02:00
|
|
|
|
|
|
|
if( ctx == NULL || ctx->pk_info != NULL )
|
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
|
|
|
|
2018-10-31 10:57:29 +01:00
|
|
|
if( PSA_SUCCESS != psa_get_key_information( key, &type, NULL ) )
|
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
/* Current implementation of can_do() relies on this. */
|
|
|
|
if( ! PSA_KEY_TYPE_IS_ECC_KEYPAIR( type ) )
|
|
|
|
return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE) ;
|
|
|
|
|
2018-10-22 12:11:15 +02:00
|
|
|
if( ( ctx->pk_ctx = info->ctx_alloc_func() ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
|
|
|
|
|
|
|
ctx->pk_info = info;
|
|
|
|
|
2019-01-08 15:36:01 +01:00
|
|
|
pk_ctx = (psa_key_handle_t *) ctx->pk_ctx;
|
2018-10-31 09:57:45 +01:00
|
|
|
*pk_ctx = key;
|
|
|
|
|
2018-10-22 12:11:15 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
|
2013-08-21 12:28:31 +02:00
|
|
|
/*
|
|
|
|
* Initialize an RSA-alt context
|
|
|
|
*/
|
2015-05-14 19:41:36 +02:00
|
|
|
int mbedtls_pk_setup_rsa_alt( mbedtls_pk_context *ctx, void * key,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_rsa_alt_decrypt_func decrypt_func,
|
|
|
|
mbedtls_pk_rsa_alt_sign_func sign_func,
|
|
|
|
mbedtls_pk_rsa_alt_key_len_func key_len_func )
|
2013-08-21 12:28:31 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_alt_context *rsa_alt;
|
|
|
|
const mbedtls_pk_info_t *info = &mbedtls_rsa_alt_info;
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
if( ctx == NULL || ctx->pk_info != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
if( ( ctx->pk_ctx = info->ctx_alloc_func() ) == NULL )
|
2015-05-28 09:33:39 +02:00
|
|
|
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
ctx->pk_info = info;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
rsa_alt = (mbedtls_rsa_alt_context *) ctx->pk_ctx;
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
rsa_alt->key = key;
|
|
|
|
rsa_alt->decrypt_func = decrypt_func;
|
|
|
|
rsa_alt->sign_func = sign_func;
|
|
|
|
rsa_alt->key_len_func = key_len_func;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */
|
2013-08-21 12:28:31 +02:00
|
|
|
|
2013-08-14 15:56:19 +02:00
|
|
|
/*
|
|
|
|
* Tell if a PK can do the operations of the given type
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_can_do( const mbedtls_pk_context *ctx, mbedtls_pk_type_t type )
|
2013-08-14 15:56:19 +02:00
|
|
|
{
|
2013-08-17 14:36:32 +02:00
|
|
|
/* null or NONE context can't do anything */
|
2013-08-14 18:26:41 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2013-08-14 15:56:19 +02:00
|
|
|
return( 0 );
|
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
return( ctx->pk_info->can_do( type ) );
|
2013-08-14 15:56:19 +02:00
|
|
|
}
|
|
|
|
|
2013-08-22 14:55:30 +02:00
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Helper for mbedtls_pk_sign and mbedtls_pk_verify
|
2013-08-22 14:55:30 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static inline int pk_hashlen_helper( mbedtls_md_type_t md_alg, size_t *hash_len )
|
2013-08-22 14:55:30 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
2013-08-22 14:55:30 +02:00
|
|
|
|
|
|
|
if( *hash_len != 0 )
|
|
|
|
return( 0 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( md_info = mbedtls_md_info_from_type( md_alg ) ) == NULL )
|
2013-08-22 14:55:30 +02:00
|
|
|
return( -1 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
*hash_len = mbedtls_md_get_size( md_info );
|
2013-08-22 14:55:30 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2017-08-18 17:30:37 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-18 16:22:06 +02:00
|
|
|
/*
|
|
|
|
* Helper to set up a restart context if needed
|
|
|
|
*/
|
|
|
|
static int pk_restart_setup( mbedtls_pk_restart_ctx *ctx,
|
2018-10-15 15:27:49 +02:00
|
|
|
const mbedtls_pk_info_t *info )
|
2017-08-18 16:22:06 +02:00
|
|
|
{
|
2018-07-02 13:09:39 +02:00
|
|
|
/* Don't do anything if already set up or invalid */
|
|
|
|
if( ctx == NULL || ctx->pk_info != NULL )
|
2017-08-18 16:22:06 +02:00
|
|
|
return( 0 );
|
|
|
|
|
|
|
|
/* Should never happen when we're called */
|
|
|
|
if( info->rs_alloc_func == NULL || info->rs_free_func == NULL )
|
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
if( ( ctx->rs_ctx = info->rs_alloc_func() ) == NULL )
|
|
|
|
return( MBEDTLS_ERR_PK_ALLOC_FAILED );
|
|
|
|
|
|
|
|
ctx->pk_info = info;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2017-08-18 17:30:37 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-08-18 16:22:06 +02:00
|
|
|
|
2013-08-14 15:56:19 +02:00
|
|
|
/*
|
2017-05-03 10:59:45 +02:00
|
|
|
* Verify a signature (restartable)
|
2013-08-14 15:56:19 +02:00
|
|
|
*/
|
2017-05-03 10:59:45 +02:00
|
|
|
int mbedtls_pk_verify_restartable( mbedtls_pk_context *ctx,
|
|
|
|
mbedtls_md_type_t md_alg,
|
2013-08-17 14:36:32 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
2017-05-03 10:59:45 +02:00
|
|
|
const unsigned char *sig, size_t sig_len,
|
2017-08-17 14:33:31 +02:00
|
|
|
mbedtls_pk_restart_ctx *rs_ctx )
|
2013-08-14 15:56:19 +02:00
|
|
|
{
|
2013-08-22 14:55:30 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL ||
|
|
|
|
pk_hashlen_helper( md_alg, &hash_len ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-14 15:56:19 +02:00
|
|
|
|
2017-08-18 17:30:37 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-18 17:40:15 +02:00
|
|
|
/* optimization: use non-restartable version if restart disabled */
|
|
|
|
if( rs_ctx != NULL &&
|
2018-10-16 10:41:31 +02:00
|
|
|
mbedtls_ecp_restart_is_enabled() &&
|
2017-08-18 17:40:15 +02:00
|
|
|
ctx->pk_info->verify_rs_func != NULL )
|
2017-05-09 10:42:40 +02:00
|
|
|
{
|
2017-08-18 16:22:06 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if( ( ret = pk_restart_setup( rs_ctx, ctx->pk_info ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
ret = ctx->pk_info->verify_rs_func( ctx->pk_ctx,
|
|
|
|
md_alg, hash, hash_len, sig, sig_len, rs_ctx->rs_ctx );
|
|
|
|
|
|
|
|
if( ret != MBEDTLS_ERR_ECP_IN_PROGRESS )
|
|
|
|
mbedtls_pk_restart_free( rs_ctx );
|
|
|
|
|
|
|
|
return( ret );
|
2017-05-09 10:42:40 +02:00
|
|
|
}
|
2017-08-18 17:30:37 +02:00
|
|
|
#else /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-05-09 10:42:40 +02:00
|
|
|
(void) rs_ctx;
|
2017-08-18 17:30:37 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-05-09 10:42:40 +02:00
|
|
|
|
2013-08-17 15:20:06 +02:00
|
|
|
if( ctx->pk_info->verify_func == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2013-08-17 15:20:06 +02:00
|
|
|
|
2013-08-21 10:34:38 +02:00
|
|
|
return( ctx->pk_info->verify_func( ctx->pk_ctx, md_alg, hash, hash_len,
|
2013-08-17 14:36:32 +02:00
|
|
|
sig, sig_len ) );
|
2013-08-14 15:56:19 +02:00
|
|
|
}
|
|
|
|
|
2017-05-03 10:59:45 +02:00
|
|
|
/*
|
|
|
|
* Verify a signature
|
|
|
|
*/
|
|
|
|
int mbedtls_pk_verify( mbedtls_pk_context *ctx, mbedtls_md_type_t md_alg,
|
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len )
|
|
|
|
{
|
|
|
|
return( mbedtls_pk_verify_restartable( ctx, md_alg, hash, hash_len,
|
|
|
|
sig, sig_len, NULL ) );
|
|
|
|
}
|
|
|
|
|
2014-06-05 13:41:44 +02:00
|
|
|
/*
|
|
|
|
* Verify a signature with options
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_verify_ext( mbedtls_pk_type_t type, const void *options,
|
|
|
|
mbedtls_pk_context *ctx, mbedtls_md_type_t md_alg,
|
2014-06-05 13:41:44 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
const unsigned char *sig, size_t sig_len )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ! mbedtls_pk_can_do( ctx, type ) )
|
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( type == MBEDTLS_PK_RSASSA_PSS )
|
2014-06-05 13:41:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_PKCS1_V21)
|
2014-06-05 13:41:44 +02:00
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_rsassa_pss_options *pss_opts;
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2017-08-04 14:32:15 +02:00
|
|
|
#if SIZE_MAX > UINT_MAX
|
2017-01-19 12:24:33 +01:00
|
|
|
if( md_alg == MBEDTLS_MD_NONE && UINT_MAX < hash_len )
|
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2017-08-04 14:32:15 +02:00
|
|
|
#endif /* SIZE_MAX > UINT_MAX */
|
2017-01-19 12:24:33 +01:00
|
|
|
|
2014-06-05 13:41:44 +02:00
|
|
|
if( options == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
pss_opts = (const mbedtls_pk_rsassa_pss_options *) options;
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( sig_len < mbedtls_pk_get_len( ctx ) )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_rsa_rsassa_pss_verify_ext( mbedtls_pk_rsa( *ctx ),
|
|
|
|
NULL, NULL, MBEDTLS_RSA_PUBLIC,
|
2014-08-16 12:45:52 +02:00
|
|
|
md_alg, (unsigned int) hash_len, hash,
|
2014-06-05 13:41:44 +02:00
|
|
|
pss_opts->mgf1_hash_id,
|
|
|
|
pss_opts->expected_salt_len,
|
|
|
|
sig );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( sig_len > mbedtls_pk_get_len( ctx ) )
|
|
|
|
return( MBEDTLS_ERR_PK_SIG_LEN_MISMATCH );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE );
|
2017-01-19 12:24:33 +01:00
|
|
|
#endif /* MBEDTLS_RSA_C && MBEDTLS_PKCS1_V21 */
|
2014-06-05 13:41:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* General case: no options */
|
|
|
|
if( options != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2014-06-05 13:41:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_pk_verify( ctx, md_alg, hash, hash_len, sig, sig_len ) );
|
2014-06-05 13:41:44 +02:00
|
|
|
}
|
|
|
|
|
2013-08-21 10:34:38 +02:00
|
|
|
/*
|
2017-05-03 10:59:45 +02:00
|
|
|
* Make a signature (restartable)
|
2013-08-21 10:34:38 +02:00
|
|
|
*/
|
2017-05-03 10:59:45 +02:00
|
|
|
int mbedtls_pk_sign_restartable( mbedtls_pk_context *ctx,
|
|
|
|
mbedtls_md_type_t md_alg,
|
2013-08-21 10:34:38 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
|
|
|
unsigned char *sig, size_t *sig_len,
|
2017-05-03 10:59:45 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
|
2017-08-17 14:33:31 +02:00
|
|
|
mbedtls_pk_restart_ctx *rs_ctx )
|
2013-08-21 10:34:38 +02:00
|
|
|
{
|
2013-08-22 14:55:30 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL ||
|
|
|
|
pk_hashlen_helper( md_alg, &hash_len ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-21 10:34:38 +02:00
|
|
|
|
2017-08-18 17:30:37 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
|
2017-08-18 17:40:15 +02:00
|
|
|
/* optimization: use non-restartable version if restart disabled */
|
|
|
|
if( rs_ctx != NULL &&
|
2018-10-16 10:41:31 +02:00
|
|
|
mbedtls_ecp_restart_is_enabled() &&
|
2017-08-18 17:40:15 +02:00
|
|
|
ctx->pk_info->sign_rs_func != NULL )
|
2017-05-09 10:42:40 +02:00
|
|
|
{
|
2017-08-18 16:22:06 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if( ( ret = pk_restart_setup( rs_ctx, ctx->pk_info ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
ret = ctx->pk_info->sign_rs_func( ctx->pk_ctx, md_alg,
|
|
|
|
hash, hash_len, sig, sig_len, f_rng, p_rng, rs_ctx->rs_ctx );
|
|
|
|
|
|
|
|
if( ret != MBEDTLS_ERR_ECP_IN_PROGRESS )
|
|
|
|
mbedtls_pk_restart_free( rs_ctx );
|
|
|
|
|
|
|
|
return( ret );
|
2017-05-09 10:42:40 +02:00
|
|
|
}
|
2017-08-18 17:30:37 +02:00
|
|
|
#else /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-05-09 10:42:40 +02:00
|
|
|
(void) rs_ctx;
|
2017-08-18 17:30:37 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
|
2017-05-09 10:42:40 +02:00
|
|
|
|
2013-08-21 10:34:38 +02:00
|
|
|
if( ctx->pk_info->sign_func == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2013-08-21 10:34:38 +02:00
|
|
|
|
|
|
|
return( ctx->pk_info->sign_func( ctx->pk_ctx, md_alg, hash, hash_len,
|
|
|
|
sig, sig_len, f_rng, p_rng ) );
|
|
|
|
}
|
|
|
|
|
2017-05-03 10:59:45 +02:00
|
|
|
/*
|
|
|
|
* Make a signature
|
|
|
|
*/
|
|
|
|
int mbedtls_pk_sign( mbedtls_pk_context *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 )
|
|
|
|
{
|
|
|
|
return( mbedtls_pk_sign_restartable( ctx, md_alg, hash, hash_len,
|
|
|
|
sig, sig_len, f_rng, p_rng, NULL ) );
|
|
|
|
}
|
|
|
|
|
2013-08-21 11:51:08 +02:00
|
|
|
/*
|
|
|
|
* Decrypt message
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_decrypt( mbedtls_pk_context *ctx,
|
2013-08-21 11:51:08 +02:00
|
|
|
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 )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-21 11:51:08 +02:00
|
|
|
|
|
|
|
if( ctx->pk_info->decrypt_func == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2013-08-21 11:51:08 +02:00
|
|
|
|
|
|
|
return( ctx->pk_info->decrypt_func( ctx->pk_ctx, input, ilen,
|
|
|
|
output, olen, osize, f_rng, p_rng ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Encrypt message
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_encrypt( mbedtls_pk_context *ctx,
|
2013-08-21 11:51:08 +02:00
|
|
|
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 )
|
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-21 11:51:08 +02:00
|
|
|
|
|
|
|
if( ctx->pk_info->encrypt_func == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2013-08-21 11:51:08 +02:00
|
|
|
|
|
|
|
return( ctx->pk_info->encrypt_func( ctx->pk_ctx, input, ilen,
|
|
|
|
output, olen, osize, f_rng, p_rng ) );
|
|
|
|
}
|
|
|
|
|
2014-11-06 16:51:20 +01:00
|
|
|
/*
|
|
|
|
* Check public-private key pair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv )
|
2014-11-06 16:51:20 +01:00
|
|
|
{
|
|
|
|
if( pub == NULL || pub->pk_info == NULL ||
|
2018-10-24 12:37:44 +02:00
|
|
|
prv == NULL || prv->pk_info == NULL )
|
2014-11-06 16:51:20 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2014-11-06 16:51:20 +01:00
|
|
|
}
|
|
|
|
|
2018-10-24 12:37:44 +02:00
|
|
|
if( prv->pk_info->check_pair_func == NULL )
|
|
|
|
return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( prv->pk_info->type == MBEDTLS_PK_RSA_ALT )
|
2014-11-06 16:51:20 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( pub->pk_info->type != MBEDTLS_PK_RSA )
|
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2014-11-08 17:08:08 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( pub->pk_info != prv->pk_info )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2014-11-06 16:51:20 +01:00
|
|
|
}
|
|
|
|
|
2014-11-08 17:08:08 +01:00
|
|
|
return( prv->pk_info->check_pair_func( pub->pk_ctx, prv->pk_ctx ) );
|
2014-11-06 16:51:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 15:56:19 +02:00
|
|
|
/*
|
|
|
|
* Get key size in bits
|
|
|
|
*/
|
2015-06-18 16:43:38 +02:00
|
|
|
size_t mbedtls_pk_get_bitlen( const mbedtls_pk_context *ctx )
|
2013-08-14 15:56:19 +02:00
|
|
|
{
|
2013-08-14 18:26:41 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2013-08-14 15:56:19 +02:00
|
|
|
return( 0 );
|
|
|
|
|
2015-06-18 16:06:55 +02:00
|
|
|
return( ctx->pk_info->get_bitlen( ctx->pk_ctx ) );
|
2013-08-14 15:56:19 +02:00
|
|
|
}
|
2013-08-14 18:04:18 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Export debug information
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_pk_debug( const mbedtls_pk_context *ctx, mbedtls_pk_debug_item *items )
|
2013-08-14 18:04:18 +02:00
|
|
|
{
|
2013-08-14 18:26:41 +02:00
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
|
2013-08-14 18:04:18 +02:00
|
|
|
|
2014-04-03 22:09:18 +02:00
|
|
|
if( ctx->pk_info->debug_func == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
2014-04-03 22:09:18 +02:00
|
|
|
|
2013-08-14 18:26:41 +02:00
|
|
|
ctx->pk_info->debug_func( ctx->pk_ctx, items );
|
2013-08-14 18:04:18 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-14 18:26:41 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Access the PK type name
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
const char *mbedtls_pk_get_name( const mbedtls_pk_context *ctx )
|
2013-08-14 18:26:41 +02:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
|
|
|
return( "invalid PK" );
|
|
|
|
|
|
|
|
return( ctx->pk_info->name );
|
|
|
|
}
|
2013-08-22 13:29:31 +02:00
|
|
|
|
2013-09-11 22:28:30 +02:00
|
|
|
/*
|
|
|
|
* Access the PK type
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_type_t mbedtls_pk_get_type( const mbedtls_pk_context *ctx )
|
2013-09-11 22:28:30 +02:00
|
|
|
{
|
|
|
|
if( ctx == NULL || ctx->pk_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_PK_NONE );
|
2013-09-11 22:28:30 +02:00
|
|
|
|
|
|
|
return( ctx->pk_info->type );
|
|
|
|
}
|
|
|
|
|
2018-11-19 12:25:37 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
/*
|
|
|
|
* Load the key to a PSA key slot,
|
|
|
|
* then turn the PK context into a wrapper for that key slot.
|
|
|
|
*
|
|
|
|
* Currently only works for EC private keys.
|
|
|
|
*/
|
|
|
|
int mbedtls_pk_wrap_as_opaque( mbedtls_pk_context *pk,
|
2019-01-08 15:36:01 +01:00
|
|
|
psa_key_handle_t *slot,
|
2018-11-19 12:25:37 +01:00
|
|
|
psa_algorithm_t hash_alg )
|
|
|
|
{
|
|
|
|
#if !defined(MBEDTLS_ECP_C)
|
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
|
|
|
#else
|
2019-01-08 15:36:01 +01:00
|
|
|
psa_key_handle_t key;
|
2018-11-19 12:25:37 +01:00
|
|
|
const mbedtls_ecp_keypair *ec;
|
|
|
|
unsigned char d[MBEDTLS_ECP_MAX_BYTES];
|
|
|
|
size_t d_len;
|
|
|
|
psa_ecc_curve_t curve_id;
|
|
|
|
psa_key_type_t key_type;
|
|
|
|
psa_key_policy_t policy;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* export the private key material in the format PSA wants */
|
|
|
|
if( mbedtls_pk_get_type( pk ) != MBEDTLS_PK_ECKEY )
|
|
|
|
return( MBEDTLS_ERR_PK_TYPE_MISMATCH );
|
|
|
|
|
|
|
|
ec = mbedtls_pk_ec( *pk );
|
|
|
|
d_len = ( ec->grp.nbits + 7 ) / 8;
|
|
|
|
if( ( ret = mbedtls_mpi_write_binary( &ec->d, d, d_len ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
curve_id = mbedtls_ecp_curve_info_from_grp_id( ec->grp.id )->tls_id;
|
2019-01-14 11:09:46 +01:00
|
|
|
key_type = PSA_KEY_TYPE_ECC_KEYPAIR(
|
2019-01-14 11:14:18 +01:00
|
|
|
mbedtls_psa_parse_tls_ecc_group ( curve_id ) );
|
2018-11-19 12:25:37 +01:00
|
|
|
|
2019-01-08 15:36:01 +01:00
|
|
|
/* allocate a key slot */
|
2019-01-25 15:29:12 +01:00
|
|
|
if( PSA_SUCCESS != psa_allocate_key( &key ) )
|
2018-11-19 12:25:37 +01:00
|
|
|
return( MBEDTLS_ERR_PK_HW_ACCEL_FAILED );
|
|
|
|
|
|
|
|
/* set policy */
|
2019-01-25 15:29:33 +01:00
|
|
|
policy = psa_key_policy_init();
|
2018-11-19 12:25:37 +01:00
|
|
|
psa_key_policy_set_usage( &policy, PSA_KEY_USAGE_SIGN,
|
|
|
|
PSA_ALG_ECDSA(hash_alg) );
|
|
|
|
if( PSA_SUCCESS != psa_set_key_policy( key, &policy ) )
|
|
|
|
return( MBEDTLS_ERR_PK_HW_ACCEL_FAILED );
|
|
|
|
|
|
|
|
/* import private key in slot */
|
|
|
|
if( PSA_SUCCESS != psa_import_key( key, key_type, d, d_len ) )
|
|
|
|
return( MBEDTLS_ERR_PK_HW_ACCEL_FAILED );
|
|
|
|
|
|
|
|
/* remember slot number to be destroyed later by caller */
|
|
|
|
*slot = key;
|
|
|
|
|
|
|
|
/* make PK context wrap the key slot */
|
|
|
|
mbedtls_pk_free( pk );
|
|
|
|
mbedtls_pk_init( pk );
|
|
|
|
|
|
|
|
return( mbedtls_pk_setup_opaque( pk, key ) );
|
|
|
|
#endif /* MBEDTLS_ECP_C */
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PK_C */
|