2013-08-12 17:06:05 +02:00
|
|
|
/*
|
|
|
|
* Public Key abstraction layer: wrapper functions
|
|
|
|
*
|
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-08-12 17:06:05 +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-08-12 17:06:05 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-08-12 17:06:05 +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-08-12 17:06:05 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-08-12 17:06:05 +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-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_C)
|
2015-05-26 11:04:15 +02:00
|
|
|
#include "mbedtls/pk_internal.h"
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2013-08-22 17:33:21 +02:00
|
|
|
/* Even if RSA not activated, for the sake of RSA-alt */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/rsa.h"
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
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-08-12 17:06:05 +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-08-12 17:06:05 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2013-08-14 15:00:27 +02:00
|
|
|
#else
|
|
|
|
#include <stdlib.h>
|
2015-05-26 16:04:06 +02:00
|
|
|
#define mbedtls_calloc calloc
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_free free
|
2013-08-14 15:00:27 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
|
2014-06-13 17:20:13 +02:00
|
|
|
/* Implementation that should never be optimized out by the compiler */
|
2015-04-08 12:49:31 +02:00
|
|
|
static void mbedtls_zeroize( void *v, size_t n ) {
|
2014-06-13 17:20:13 +02:00
|
|
|
volatile unsigned char *p = v; while( n-- ) *p++ = 0;
|
|
|
|
}
|
2015-03-31 14:01:33 +02:00
|
|
|
#endif
|
2014-06-13 17:20:13 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
static int rsa_can_do( mbedtls_pk_type_t type )
|
2013-08-12 18:41:18 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( type == MBEDTLS_PK_RSA ||
|
|
|
|
type == MBEDTLS_PK_RSASSA_PSS );
|
2013-08-12 18:41:18 +02:00
|
|
|
}
|
|
|
|
|
2015-06-18 16:06:55 +02:00
|
|
|
static size_t rsa_get_bitlen( const void *ctx )
|
2013-08-12 19:45:32 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( 8 * ((const mbedtls_rsa_context *) ctx)->len );
|
2013-08-12 19:45:32 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int rsa_verify_wrap( void *ctx, mbedtls_md_type_t md_alg,
|
2013-08-17 14:36:32 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
2013-08-12 17:06:05 +02:00
|
|
|
const unsigned char *sig, size_t sig_len )
|
|
|
|
{
|
2014-04-08 12:40:15 +02:00
|
|
|
int ret;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( sig_len < ((mbedtls_rsa_context *) ctx)->len )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_rsa_pkcs1_verify( (mbedtls_rsa_context *) ctx, NULL, NULL,
|
|
|
|
MBEDTLS_RSA_PUBLIC, md_alg,
|
2014-04-08 12:40:15 +02:00
|
|
|
(unsigned int) hash_len, hash, sig ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( sig_len > ((mbedtls_rsa_context *) ctx)->len )
|
|
|
|
return( MBEDTLS_ERR_PK_SIG_LEN_MISMATCH );
|
2014-04-08 12:40:15 +02:00
|
|
|
|
|
|
|
return( 0 );
|
2013-08-12 17:06:05 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int rsa_sign_wrap( void *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,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
*sig_len = ((mbedtls_rsa_context *) ctx)->len;
|
2013-08-21 10:34:38 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_rsa_pkcs1_sign( (mbedtls_rsa_context *) ctx, f_rng, p_rng, MBEDTLS_RSA_PRIVATE,
|
2013-10-11 18:58:55 +02:00
|
|
|
md_alg, (unsigned int) hash_len, hash, sig ) );
|
2013-08-21 10:34:38 +02:00
|
|
|
}
|
|
|
|
|
2013-08-21 11:51:08 +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 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ilen != ((mbedtls_rsa_context *) ctx)->len )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-08-21 11:51:08 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_rsa_pkcs1_decrypt( (mbedtls_rsa_context *) ctx, f_rng, p_rng,
|
|
|
|
MBEDTLS_RSA_PRIVATE, olen, input, output, osize ) );
|
2013-08-21 11:51:08 +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 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
*olen = ((mbedtls_rsa_context *) ctx)->len;
|
2013-08-21 11:51:08 +02:00
|
|
|
|
2014-11-08 17:08:08 +01:00
|
|
|
if( *olen > osize )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE );
|
2014-11-08 17:08:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_rsa_pkcs1_encrypt( (mbedtls_rsa_context *) ctx,
|
|
|
|
f_rng, p_rng, MBEDTLS_RSA_PUBLIC, ilen, input, output ) );
|
2013-08-21 11:51:08 +02:00
|
|
|
}
|
|
|
|
|
2014-11-06 16:51:20 +01:00
|
|
|
static int rsa_check_pair_wrap( const void *pub, const void *prv )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_rsa_check_pub_priv( (const mbedtls_rsa_context *) pub,
|
|
|
|
(const mbedtls_rsa_context *) prv ) );
|
2014-11-06 16:51:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 15:00:27 +02:00
|
|
|
static void *rsa_alloc_wrap( void )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
void *ctx = mbedtls_calloc( 1, sizeof( mbedtls_rsa_context ) );
|
2013-08-14 15:00:27 +02:00
|
|
|
|
|
|
|
if( ctx != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_init( (mbedtls_rsa_context *) ctx, 0, 0 );
|
2013-08-14 15:00:27 +02:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( ctx );
|
2013-08-14 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void rsa_free_wrap( void *ctx )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_free( (mbedtls_rsa_context *) ctx );
|
|
|
|
mbedtls_free( ctx );
|
2013-08-14 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static void rsa_debug( const void *ctx, mbedtls_pk_debug_item *items )
|
2013-08-14 18:04:18 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
items->type = MBEDTLS_PK_DEBUG_MPI;
|
2013-08-14 18:04:18 +02:00
|
|
|
items->name = "rsa.N";
|
2015-04-08 12:49:31 +02:00
|
|
|
items->value = &( ((mbedtls_rsa_context *) ctx)->N );
|
2013-08-14 18:04:18 +02:00
|
|
|
|
|
|
|
items++;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
items->type = MBEDTLS_PK_DEBUG_MPI;
|
2013-08-14 18:04:18 +02:00
|
|
|
items->name = "rsa.E";
|
2015-04-08 12:49:31 +02:00
|
|
|
items->value = &( ((mbedtls_rsa_context *) ctx)->E );
|
2013-08-14 18:04:18 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t mbedtls_rsa_info = {
|
|
|
|
MBEDTLS_PK_RSA,
|
2013-08-12 19:45:32 +02:00
|
|
|
"RSA",
|
2015-06-18 16:06:55 +02:00
|
|
|
rsa_get_bitlen,
|
2013-08-12 18:41:18 +02:00
|
|
|
rsa_can_do,
|
2013-08-12 17:06:05 +02:00
|
|
|
rsa_verify_wrap,
|
2013-08-21 10:34:38 +02:00
|
|
|
rsa_sign_wrap,
|
2013-08-21 11:51:08 +02:00
|
|
|
rsa_decrypt_wrap,
|
|
|
|
rsa_encrypt_wrap,
|
2014-11-06 16:51:20 +01:00
|
|
|
rsa_check_pair_wrap,
|
2013-08-14 15:00:27 +02:00
|
|
|
rsa_alloc_wrap,
|
|
|
|
rsa_free_wrap,
|
2013-08-14 18:04:18 +02:00
|
|
|
rsa_debug,
|
2013-08-12 17:06:05 +02:00
|
|
|
};
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
2013-08-12 18:51:26 +02:00
|
|
|
/*
|
|
|
|
* Generic EC key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int eckey_can_do( mbedtls_pk_type_t type )
|
2013-08-12 18:41:18 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( type == MBEDTLS_PK_ECKEY ||
|
|
|
|
type == MBEDTLS_PK_ECKEY_DH ||
|
|
|
|
type == MBEDTLS_PK_ECDSA );
|
2013-08-12 18:41:18 +02:00
|
|
|
}
|
|
|
|
|
2015-06-18 16:06:55 +02:00
|
|
|
static size_t eckey_get_bitlen( const void *ctx )
|
2013-08-12 19:45:32 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( ((mbedtls_ecp_keypair *) ctx)->grp.pbits );
|
2013-08-12 19:45:32 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
2013-08-21 10:34:38 +02:00
|
|
|
/* Forward declarations */
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecdsa_verify_wrap( void *ctx, mbedtls_md_type_t md_alg,
|
2013-08-17 14:36:32 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
2013-08-14 18:16:50 +02:00
|
|
|
const unsigned char *sig, size_t sig_len );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecdsa_sign_wrap( void *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,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int eckey_verify_wrap( void *ctx, mbedtls_md_type_t md_alg,
|
2013-08-17 14:36:32 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
2013-08-12 17:06:05 +02:00
|
|
|
const unsigned char *sig, size_t sig_len )
|
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_context ecdsa;
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_init( &ecdsa );
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecdsa_from_keypair( &ecdsa, ctx ) ) == 0 )
|
2013-08-20 16:58:13 +02:00
|
|
|
ret = ecdsa_verify_wrap( &ecdsa, md_alg, hash, hash_len, sig, sig_len );
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_free( &ecdsa );
|
2013-08-12 17:06:05 +02:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-08-21 10:34:38 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int eckey_sign_wrap( void *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,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_context ecdsa;
|
2013-08-21 10:34:38 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_init( &ecdsa );
|
2013-08-21 10:34:38 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecdsa_from_keypair( &ecdsa, ctx ) ) == 0 )
|
2013-08-21 10:34:38 +02:00
|
|
|
ret = ecdsa_sign_wrap( &ecdsa, md_alg, hash, hash_len, sig, sig_len,
|
|
|
|
f_rng, p_rng );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_free( &ecdsa );
|
2013-08-21 10:34:38 +02:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
2013-08-12 17:06:05 +02:00
|
|
|
|
2014-11-06 16:51:20 +01:00
|
|
|
static int eckey_check_pair( const void *pub, const void *prv )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_ecp_check_pub_priv( (const mbedtls_ecp_keypair *) pub,
|
|
|
|
(const mbedtls_ecp_keypair *) prv ) );
|
2014-11-06 16:51:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 15:00:27 +02:00
|
|
|
static void *eckey_alloc_wrap( void )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
void *ctx = mbedtls_calloc( 1, sizeof( mbedtls_ecp_keypair ) );
|
2013-08-14 15:00:27 +02:00
|
|
|
|
|
|
|
if( ctx != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_keypair_init( ctx );
|
2013-08-14 15:00:27 +02:00
|
|
|
|
|
|
|
return( ctx );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eckey_free_wrap( void *ctx )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_keypair_free( (mbedtls_ecp_keypair *) ctx );
|
|
|
|
mbedtls_free( ctx );
|
2013-08-14 15:00:27 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static void eckey_debug( const void *ctx, mbedtls_pk_debug_item *items )
|
2013-08-14 18:04:18 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
items->type = MBEDTLS_PK_DEBUG_ECP;
|
2013-08-14 18:04:18 +02:00
|
|
|
items->name = "eckey.Q";
|
2015-04-08 12:49:31 +02:00
|
|
|
items->value = &( ((mbedtls_ecp_keypair *) ctx)->Q );
|
2013-08-14 18:04:18 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t mbedtls_eckey_info = {
|
|
|
|
MBEDTLS_PK_ECKEY,
|
2013-08-12 19:45:32 +02:00
|
|
|
"EC",
|
2015-06-18 16:06:55 +02:00
|
|
|
eckey_get_bitlen,
|
2013-08-12 18:41:18 +02:00
|
|
|
eckey_can_do,
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
2013-08-12 17:06:05 +02:00
|
|
|
eckey_verify_wrap,
|
2013-08-21 10:34:38 +02:00
|
|
|
eckey_sign_wrap,
|
2013-08-17 15:20:06 +02:00
|
|
|
#else
|
|
|
|
NULL,
|
2013-08-21 10:34:38 +02:00
|
|
|
NULL,
|
2013-08-17 15:20:06 +02:00
|
|
|
#endif
|
2013-08-21 11:51:08 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-11-06 16:51:20 +01:00
|
|
|
eckey_check_pair,
|
2013-08-14 15:00:27 +02:00
|
|
|
eckey_alloc_wrap,
|
|
|
|
eckey_free_wrap,
|
2013-08-14 18:04:18 +02:00
|
|
|
eckey_debug,
|
2013-08-12 17:06:05 +02:00
|
|
|
};
|
2013-08-12 18:51:26 +02:00
|
|
|
|
|
|
|
/*
|
2014-04-08 17:35:40 +02:00
|
|
|
* EC key restricted to ECDH
|
2013-08-12 18:51:26 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
static int eckeydh_can_do( mbedtls_pk_type_t type )
|
2013-08-12 18:51:26 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( type == MBEDTLS_PK_ECKEY ||
|
|
|
|
type == MBEDTLS_PK_ECKEY_DH );
|
2013-08-12 18:51:26 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t mbedtls_eckeydh_info = {
|
|
|
|
MBEDTLS_PK_ECKEY_DH,
|
2013-08-12 19:45:32 +02:00
|
|
|
"EC_DH",
|
2015-06-18 16:06:55 +02:00
|
|
|
eckey_get_bitlen, /* Same underlying key structure */
|
2013-08-12 18:51:26 +02:00
|
|
|
eckeydh_can_do,
|
2013-08-17 15:20:06 +02:00
|
|
|
NULL,
|
2013-08-21 10:34:38 +02:00
|
|
|
NULL,
|
2013-08-21 11:51:08 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-11-06 16:51:20 +01:00
|
|
|
eckey_check_pair,
|
2013-08-14 15:00:27 +02:00
|
|
|
eckey_alloc_wrap, /* Same underlying key structure */
|
|
|
|
eckey_free_wrap, /* Same underlying key structure */
|
2013-08-14 18:16:50 +02:00
|
|
|
eckey_debug, /* Same underlying key structure */
|
2013-08-12 18:51:26 +02:00
|
|
|
};
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECP_C */
|
2013-08-14 18:16:50 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
static int ecdsa_can_do( mbedtls_pk_type_t type )
|
2013-08-14 18:16:50 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( type == MBEDTLS_PK_ECDSA );
|
2013-08-14 18:16:50 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecdsa_verify_wrap( void *ctx, mbedtls_md_type_t md_alg,
|
2013-08-17 14:36:32 +02:00
|
|
|
const unsigned char *hash, size_t hash_len,
|
2013-08-14 18:16:50 +02:00
|
|
|
const unsigned char *sig, size_t sig_len )
|
|
|
|
{
|
2014-04-08 12:40:15 +02:00
|
|
|
int ret;
|
2013-08-17 14:36:32 +02:00
|
|
|
((void) md_alg);
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_ecdsa_read_signature( (mbedtls_ecdsa_context *) ctx,
|
2014-04-08 12:40:15 +02:00
|
|
|
hash, hash_len, sig, sig_len );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ret == MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH )
|
|
|
|
return( MBEDTLS_ERR_PK_SIG_LEN_MISMATCH );
|
2014-04-08 12:40:15 +02:00
|
|
|
|
|
|
|
return( ret );
|
2013-08-14 18:16:50 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ecdsa_sign_wrap( void *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,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_ecdsa_write_signature( (mbedtls_ecdsa_context *) ctx,
|
2015-03-31 11:41:42 +02:00
|
|
|
md_alg, hash, hash_len, sig, sig_len, f_rng, p_rng ) );
|
2013-08-21 10:34:38 +02:00
|
|
|
}
|
|
|
|
|
2013-08-14 18:16:50 +02:00
|
|
|
static void *ecdsa_alloc_wrap( void )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
void *ctx = mbedtls_calloc( 1, sizeof( mbedtls_ecdsa_context ) );
|
2013-08-14 18:16:50 +02:00
|
|
|
|
|
|
|
if( ctx != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_init( (mbedtls_ecdsa_context *) ctx );
|
2013-08-14 18:16:50 +02:00
|
|
|
|
|
|
|
return( ctx );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ecdsa_free_wrap( void *ctx )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecdsa_free( (mbedtls_ecdsa_context *) ctx );
|
|
|
|
mbedtls_free( ctx );
|
2013-08-14 18:16:50 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t mbedtls_ecdsa_info = {
|
|
|
|
MBEDTLS_PK_ECDSA,
|
2013-08-14 18:16:50 +02:00
|
|
|
"ECDSA",
|
2015-06-18 16:06:55 +02:00
|
|
|
eckey_get_bitlen, /* Compatible key structures */
|
2013-08-14 18:16:50 +02:00
|
|
|
ecdsa_can_do,
|
|
|
|
ecdsa_verify_wrap,
|
2013-08-21 10:34:38 +02:00
|
|
|
ecdsa_sign_wrap,
|
2013-08-21 11:51:08 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-11-06 16:51:20 +01:00
|
|
|
eckey_check_pair, /* Compatible key structures */
|
2013-08-14 18:16:50 +02:00
|
|
|
ecdsa_alloc_wrap,
|
|
|
|
ecdsa_free_wrap,
|
|
|
|
eckey_debug, /* Compatible key structures */
|
|
|
|
};
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECDSA_C */
|
2013-08-21 12:28:31 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
|
2013-08-21 12:28:31 +02:00
|
|
|
/*
|
|
|
|
* Support for alternative RSA-private implementations
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int rsa_alt_can_do( mbedtls_pk_type_t type )
|
2014-06-05 13:41:44 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( type == MBEDTLS_PK_RSA );
|
2014-06-05 13:41:44 +02:00
|
|
|
}
|
|
|
|
|
2015-06-18 16:06:55 +02:00
|
|
|
static size_t rsa_alt_get_bitlen( const void *ctx )
|
2013-08-21 12:28:31 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_rsa_alt_context *rsa_alt = (const mbedtls_rsa_alt_context *) ctx;
|
2013-08-21 12:28:31 +02:00
|
|
|
|
2014-04-03 22:09:18 +02:00
|
|
|
return( 8 * rsa_alt->key_len_func( rsa_alt->key ) );
|
2013-08-21 12:28:31 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int rsa_alt_sign_wrap( void *ctx, mbedtls_md_type_t md_alg,
|
2013-08-21 12:28:31 +02:00
|
|
|
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 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_alt_context *rsa_alt = (mbedtls_rsa_alt_context *) ctx;
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
*sig_len = rsa_alt->key_len_func( rsa_alt->key );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( rsa_alt->sign_func( rsa_alt->key, f_rng, p_rng, MBEDTLS_RSA_PRIVATE,
|
2013-10-11 18:58:55 +02:00
|
|
|
md_alg, (unsigned int) hash_len, hash, sig ) );
|
2013-08-21 12:28:31 +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 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_alt_context *rsa_alt = (mbedtls_rsa_alt_context *) ctx;
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
((void) f_rng);
|
|
|
|
((void) p_rng);
|
|
|
|
|
|
|
|
if( ilen != rsa_alt->key_len_func( rsa_alt->key ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
return( rsa_alt->decrypt_func( rsa_alt->key,
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_RSA_PRIVATE, olen, input, output, osize ) );
|
2013-08-21 12:28:31 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2014-11-08 17:08:08 +01:00
|
|
|
static int rsa_alt_check_pair( const void *pub, const void *prv )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char sig[MBEDTLS_MPI_MAX_SIZE];
|
2014-11-08 17:08:08 +01:00
|
|
|
unsigned char hash[32];
|
|
|
|
size_t sig_len = 0;
|
|
|
|
int ret;
|
|
|
|
|
2015-06-18 16:06:55 +02:00
|
|
|
if( rsa_alt_get_bitlen( prv ) != rsa_get_bitlen( pub ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2014-11-08 17:08:08 +01:00
|
|
|
|
|
|
|
memset( hash, 0x2a, sizeof( hash ) );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = rsa_alt_sign_wrap( (void *) prv, MBEDTLS_MD_NONE,
|
2014-11-08 17:08:08 +01:00
|
|
|
hash, sizeof( hash ),
|
|
|
|
sig, &sig_len, NULL, NULL ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( rsa_verify_wrap( (void *) pub, MBEDTLS_MD_NONE,
|
2014-11-08 17:08:08 +01:00
|
|
|
hash, sizeof( hash ), sig, sig_len ) != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2014-11-08 17:08:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|
2014-11-08 17:08:08 +01:00
|
|
|
|
2013-08-21 12:28:31 +02:00
|
|
|
static void *rsa_alt_alloc_wrap( void )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
void *ctx = mbedtls_calloc( 1, sizeof( mbedtls_rsa_alt_context ) );
|
2013-08-21 12:28:31 +02:00
|
|
|
|
|
|
|
if( ctx != NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( ctx, 0, sizeof( mbedtls_rsa_alt_context ) );
|
2013-08-21 12:28:31 +02:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( ctx );
|
2013-08-21 12:28:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void rsa_alt_free_wrap( void *ctx )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_zeroize( ctx, sizeof( mbedtls_rsa_alt_context ) );
|
|
|
|
mbedtls_free( ctx );
|
2013-08-21 12:28:31 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_pk_info_t mbedtls_rsa_alt_info = {
|
|
|
|
MBEDTLS_PK_RSA_ALT,
|
2013-08-21 12:28:31 +02:00
|
|
|
"RSA-alt",
|
2015-06-18 16:06:55 +02:00
|
|
|
rsa_alt_get_bitlen,
|
2014-06-05 13:41:44 +02:00
|
|
|
rsa_alt_can_do,
|
2013-08-21 12:28:31 +02:00
|
|
|
NULL,
|
|
|
|
rsa_alt_sign_wrap,
|
|
|
|
rsa_alt_decrypt_wrap,
|
|
|
|
NULL,
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2014-11-08 17:08:08 +01:00
|
|
|
rsa_alt_check_pair,
|
2014-11-12 00:01:34 +01:00
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
2013-08-21 12:28:31 +02:00
|
|
|
rsa_alt_alloc_wrap,
|
|
|
|
rsa_alt_free_wrap,
|
|
|
|
NULL,
|
|
|
|
};
|
2013-08-22 13:29:31 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */
|
2015-03-31 14:01:33 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PK_C */
|