2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* The RSA public-key cryptosystem
|
|
|
|
*
|
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
|
2010-07-18 22:36:00 +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
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
/*
|
2016-01-20 01:44:42 +01:00
|
|
|
* The following sources were referenced in the design of this implementation
|
|
|
|
* of the RSA algorithm:
|
|
|
|
*
|
|
|
|
* [1] A method for obtaining digital signatures and public-key cryptosystems
|
|
|
|
* R Rivest, A Shamir, and L Adleman
|
|
|
|
* http://people.csail.mit.edu/rivest/pubs.html#RSA78
|
|
|
|
*
|
|
|
|
* [2] Handbook of Applied Cryptography - 1997, Chapter 8
|
|
|
|
* Menezes, van Oorschot and Vanstone
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2017-03-22 14:38:28 +01:00
|
|
|
* [3] Malware Guard Extension: Using SGX to Conceal Cache Attacks
|
|
|
|
* Michael Schwarz, Samuel Weiser, Daniel Gruss, Clémentine Maurice and
|
|
|
|
* Stefan Mangard
|
|
|
|
* https://arxiv.org/abs/1702.08719v2
|
|
|
|
*
|
2009-01-03 22:22:43 +01: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
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/rsa.h"
|
|
|
|
#include "mbedtls/oid.h"
|
2012-08-23 09:46:58 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/md.h"
|
2012-08-23 09:46:58 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15) && !defined(__OpenBSD__)
|
2009-01-03 22:22:43 +01:00
|
|
|
#include <stdlib.h>
|
2015-02-06 14:43:58 +01:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
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"
|
2014-02-01 22:50:26 +01:00
|
|
|
#else
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
2015-09-03 20:03:15 +02:00
|
|
|
#define mbedtls_calloc calloc
|
|
|
|
#define mbedtls_free free
|
2014-02-01 22:50:26 +01:00
|
|
|
#endif
|
|
|
|
|
2017-03-23 14:37:37 +01:00
|
|
|
/* Implementation that should never be optimized out by the compiler */
|
|
|
|
static void mbedtls_zeroize( void *v, size_t n ) {
|
|
|
|
volatile unsigned char *p = (unsigned char*)v; while( n-- ) *p++ = 0;
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Initialize an RSA context
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_rsa_init( mbedtls_rsa_context *ctx,
|
2009-01-03 22:22:43 +01:00
|
|
|
int padding,
|
2010-08-16 13:10:02 +02:00
|
|
|
int hash_id )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( ctx, 0, sizeof( mbedtls_rsa_context ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_set_padding( ctx, padding, hash_id );
|
2013-09-29 14:58:17 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_init( &ctx->mutex );
|
2013-09-29 14:58:17 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2014-03-10 21:55:35 +01:00
|
|
|
/*
|
|
|
|
* Set padding for an existing RSA context
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_rsa_set_padding( mbedtls_rsa_context *ctx, int padding, int hash_id )
|
2014-03-10 21:55:35 +01:00
|
|
|
{
|
|
|
|
ctx->padding = padding;
|
|
|
|
ctx->hash_id = hash_id;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_GENPRIME)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate an RSA keypair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_gen_key( mbedtls_rsa_context *ctx,
|
2011-11-27 22:07:34 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
unsigned int nbits, int exponent )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi P1, Q1, H, G;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-08-16 13:10:02 +02:00
|
|
|
if( f_rng == NULL || nbits < 128 || exponent < 3 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2016-09-21 14:18:12 +02:00
|
|
|
if( nbits % 2 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
mbedtls_mpi_init( &P1 ); mbedtls_mpi_init( &Q1 );
|
2016-02-23 15:42:48 +01:00
|
|
|
mbedtls_mpi_init( &H ); mbedtls_mpi_init( &G );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* find primes P and Q with Q < P so that:
|
|
|
|
* GCD( E, (P-1)*(Q-1) ) == 1
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_lset( &ctx->E, exponent ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2016-02-23 15:42:48 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gen_prime( &ctx->P, nbits >> 1, 0,
|
2010-08-16 13:10:02 +02:00
|
|
|
f_rng, p_rng ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2016-09-21 14:18:12 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gen_prime( &ctx->Q, nbits >> 1, 0,
|
2010-08-16 13:10:02 +02:00
|
|
|
f_rng, p_rng ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &ctx->P, &ctx->Q ) == 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &ctx->N, &ctx->P, &ctx->Q ) );
|
2015-06-18 16:47:17 +02:00
|
|
|
if( mbedtls_mpi_bitlen( &ctx->N ) != nbits )
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
|
|
|
|
2016-09-21 14:18:12 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &ctx->P, &ctx->Q ) < 0 )
|
|
|
|
mbedtls_mpi_swap( &ctx->P, &ctx->Q );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &P1, &ctx->P, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &Q1, &ctx->Q, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &H, &P1, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gcd( &G, &ctx->E, &H ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_mpi_cmp_int( &G, 1 ) != 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* D = E^-1 mod ((P-1)*(Q-1))
|
|
|
|
* DP = D mod (P - 1)
|
|
|
|
* DQ = D mod (Q - 1)
|
|
|
|
* QP = Q^-1 mod P
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &ctx->D , &ctx->E, &H ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &ctx->DP, &ctx->D, &P1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &ctx->DQ, &ctx->D, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &ctx->QP, &ctx->Q, &ctx->P ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-18 16:47:17 +02:00
|
|
|
ctx->len = ( mbedtls_mpi_bitlen( &ctx->N ) + 7 ) >> 3;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &P1 ); mbedtls_mpi_free( &Q1 ); mbedtls_mpi_free( &H ); mbedtls_mpi_free( &G );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_free( ctx );
|
|
|
|
return( MBEDTLS_ERR_RSA_KEY_GEN_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-08-30 12:06:24 +02:00
|
|
|
return( 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_GENPRIME */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check a public RSA key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_check_pubkey( const mbedtls_rsa_context *ctx )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2009-07-11 00:38:58 +02:00
|
|
|
if( !ctx->N.p || !ctx->E.p )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2009-07-11 00:38:58 +02:00
|
|
|
|
2013-08-30 12:06:24 +02:00
|
|
|
if( ( ctx->N.p[0] & 1 ) == 0 ||
|
2009-01-03 22:22:43 +01:00
|
|
|
( ctx->E.p[0] & 1 ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-18 16:47:17 +02:00
|
|
|
if( mbedtls_mpi_bitlen( &ctx->N ) < 128 ||
|
|
|
|
mbedtls_mpi_bitlen( &ctx->N ) > MBEDTLS_MPI_MAX_BITS )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-18 16:47:17 +02:00
|
|
|
if( mbedtls_mpi_bitlen( &ctx->E ) < 2 ||
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_cmp_mpi( &ctx->E, &ctx->N ) >= 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check a private RSA key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_check_privkey( const mbedtls_rsa_context *ctx )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi PQ, DE, P1, Q1, H, I, G, G2, L1, L2, DP, DQ, QP;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_rsa_check_pubkey( ctx ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
|
2009-07-11 00:38:58 +02:00
|
|
|
if( !ctx->P.p || !ctx->Q.p || !ctx->D.p )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
|
|
|
|
|
|
|
mbedtls_mpi_init( &PQ ); mbedtls_mpi_init( &DE ); mbedtls_mpi_init( &P1 ); mbedtls_mpi_init( &Q1 );
|
|
|
|
mbedtls_mpi_init( &H ); mbedtls_mpi_init( &I ); mbedtls_mpi_init( &G ); mbedtls_mpi_init( &G2 );
|
|
|
|
mbedtls_mpi_init( &L1 ); mbedtls_mpi_init( &L2 ); mbedtls_mpi_init( &DP ); mbedtls_mpi_init( &DQ );
|
|
|
|
mbedtls_mpi_init( &QP );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &PQ, &ctx->P, &ctx->Q ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &DE, &ctx->D, &ctx->E ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &P1, &ctx->P, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &Q1, &ctx->Q, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &H, &P1, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gcd( &G, &ctx->E, &H ) );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gcd( &G2, &P1, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_div_mpi( &L1, &L2, &H, &G2 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &I, &DE, &L1 ) );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &DP, &ctx->D, &P1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &DQ, &ctx->D, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &QP, &ctx->Q, &ctx->P ) );
|
2010-07-18 10:29:32 +02:00
|
|
|
/*
|
|
|
|
* Check for a valid PKCS1v2 private key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &PQ, &ctx->N ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &DP, &ctx->DP ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &DQ, &ctx->DQ ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &QP, &ctx->QP ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_int( &L2, 0 ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_int( &I, 1 ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_int( &G, 1 ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = MBEDTLS_ERR_RSA_KEY_CHECK_FAILED;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2013-08-30 12:06:24 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &PQ ); mbedtls_mpi_free( &DE ); mbedtls_mpi_free( &P1 ); mbedtls_mpi_free( &Q1 );
|
|
|
|
mbedtls_mpi_free( &H ); mbedtls_mpi_free( &I ); mbedtls_mpi_free( &G ); mbedtls_mpi_free( &G2 );
|
|
|
|
mbedtls_mpi_free( &L1 ); mbedtls_mpi_free( &L2 ); mbedtls_mpi_free( &DP ); mbedtls_mpi_free( &DQ );
|
|
|
|
mbedtls_mpi_free( &QP );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ret == MBEDTLS_ERR_RSA_KEY_CHECK_FAILED )
|
2011-05-09 18:17:09 +02:00
|
|
|
return( ret );
|
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
if( ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED + ret );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
|
|
|
return( 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2014-11-06 14:02:51 +01:00
|
|
|
/*
|
|
|
|
* Check if contexts holding a public and private key match
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_check_pub_priv( const mbedtls_rsa_context *pub, const mbedtls_rsa_context *prv )
|
2014-11-06 14:02:51 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_check_pubkey( pub ) != 0 ||
|
|
|
|
mbedtls_rsa_check_privkey( prv ) != 0 )
|
2014-11-06 14:02:51 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2014-11-06 14:02:51 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &pub->N, &prv->N ) != 0 ||
|
|
|
|
mbedtls_mpi_cmp_mpi( &pub->E, &prv->E ) != 0 )
|
2014-11-06 14:02:51 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_KEY_CHECK_FAILED );
|
2014-11-06 14:02:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Do an RSA public key operation
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_public( mbedtls_rsa_context *ctx,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
|
|
|
size_t olen;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi T;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &T );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-08-27 11:30:58 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &T, input, ctx->len ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_cmp_mpi( &T, &ctx->N ) >= 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-08-28 10:32:21 +02:00
|
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
|
|
goto cleanup;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
olen = ctx->len;
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &T, &T, &ctx->E, &ctx->N, &ctx->RN ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &T, output, olen ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
2015-08-28 10:32:21 +02:00
|
|
|
if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
|
2015-03-27 15:06:07 +01:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &T );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_PUBLIC_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-09-10 13:29:30 +02:00
|
|
|
/*
|
2013-09-10 13:37:26 +02:00
|
|
|
* Generate or update blinding values, see section 10 of:
|
|
|
|
* KOCHER, Paul C. Timing attacks on implementations of Diffie-Hellman, RSA,
|
2015-04-03 13:48:06 +02:00
|
|
|
* DSS, and other systems. In : Advances in Cryptology-CRYPTO'96. Springer
|
2013-09-10 13:37:26 +02:00
|
|
|
* Berlin Heidelberg, 1996. p. 104-113.
|
2013-09-10 13:29:30 +02:00
|
|
|
*/
|
2015-08-27 11:30:58 +02:00
|
|
|
static int rsa_prepare_blinding( mbedtls_rsa_context *ctx,
|
2013-09-10 13:29:30 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
{
|
2013-10-04 15:18:38 +02:00
|
|
|
int ret, count = 0;
|
2013-09-10 13:29:30 +02:00
|
|
|
|
2013-09-10 13:37:26 +02:00
|
|
|
if( ctx->Vf.p != NULL )
|
|
|
|
{
|
|
|
|
/* We already have blinding values, just update them by squaring */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &ctx->Vi, &ctx->Vi, &ctx->Vi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &ctx->Vi, &ctx->Vi, &ctx->N ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &ctx->Vf, &ctx->Vf, &ctx->Vf ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &ctx->Vf, &ctx->Vf, &ctx->N ) );
|
2013-09-10 13:37:26 +02:00
|
|
|
|
2015-08-27 11:30:58 +02:00
|
|
|
goto cleanup;
|
2013-09-10 13:37:26 +02:00
|
|
|
}
|
|
|
|
|
2013-10-04 15:18:38 +02:00
|
|
|
/* Unblinding value: Vf = random number, invertible mod N */
|
|
|
|
do {
|
|
|
|
if( count++ > 10 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_RNG_FAILED );
|
2013-10-04 15:18:38 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &ctx->Vf, ctx->len - 1, f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_gcd( &ctx->Vi, &ctx->Vf, &ctx->N ) );
|
|
|
|
} while( mbedtls_mpi_cmp_int( &ctx->Vi, 1 ) != 0 );
|
2013-09-10 13:29:30 +02:00
|
|
|
|
|
|
|
/* Blinding value: Vi = Vf^(-e) mod N */
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_inv_mod( &ctx->Vi, &ctx->Vf, &ctx->N ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &ctx->Vi, &ctx->Vi, &ctx->E, &ctx->N, &ctx->RN ) );
|
2013-09-10 13:29:30 +02:00
|
|
|
|
2013-10-04 17:07:12 +02:00
|
|
|
|
2013-09-10 13:29:30 +02:00
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-03-22 14:38:28 +01:00
|
|
|
/*
|
|
|
|
* Exponent blinding supposed to prevent side-channel attacks using multiple
|
|
|
|
* traces of measurements to recover the RSA key. The more collisions are there,
|
|
|
|
* the more bits of the key can be recovered. See [3].
|
|
|
|
*
|
|
|
|
* Collecting n collisions with m bit long blinding value requires 2^(m-m/n)
|
|
|
|
* observations on avarage.
|
|
|
|
*
|
|
|
|
* For example with 28 byte blinding to achieve 2 collisions the adversary has
|
|
|
|
* to make 2^112 observations on avarage.
|
|
|
|
*
|
|
|
|
* (With the currently (as of 2017 April) known best algorithms breaking 2048
|
|
|
|
* bit RSA requires approximately as much time as trying out 2^112 random keys.
|
|
|
|
* Thus in this sense with 28 byte blinding the security is not reduced by
|
|
|
|
* side-channel attacks like the one in [3])
|
|
|
|
*
|
|
|
|
* This countermeasure does not help if the key recovery is possible with a
|
|
|
|
* single trace.
|
|
|
|
*/
|
|
|
|
#define RSA_EXPONENT_BLINDING 28
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Do an RSA private key operation
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_private( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
|
|
|
size_t olen;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi T, T1, T2;
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi P1, Q1, R;
|
2017-03-22 14:38:28 +01:00
|
|
|
#if defined(MBEDTLS_RSA_NO_CRT)
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi D_blind;
|
2017-03-22 14:38:28 +01:00
|
|
|
mbedtls_mpi *D = &ctx->D;
|
2017-03-22 16:13:15 +01:00
|
|
|
#else
|
|
|
|
mbedtls_mpi DP_blind, DQ_blind;
|
|
|
|
mbedtls_mpi *DP = &ctx->DP;
|
|
|
|
mbedtls_mpi *DQ = &ctx->DQ;
|
2017-03-22 14:38:28 +01:00
|
|
|
#endif
|
2013-10-04 17:07:12 +02:00
|
|
|
|
2015-10-30 10:56:25 +01:00
|
|
|
/* Make sure we have private key info, prevent possible misuse */
|
|
|
|
if( ctx->P.p == NULL || ctx->Q.p == NULL || ctx->D.p == NULL )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
|
|
|
|
2015-08-27 11:30:58 +02:00
|
|
|
mbedtls_mpi_init( &T ); mbedtls_mpi_init( &T1 ); mbedtls_mpi_init( &T2 );
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi_init( &P1 ); mbedtls_mpi_init( &Q1 ); mbedtls_mpi_init( &R );
|
|
|
|
|
|
|
|
|
|
|
|
if( f_rng != NULL )
|
|
|
|
{
|
2017-03-22 14:38:28 +01:00
|
|
|
#if defined(MBEDTLS_RSA_NO_CRT)
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi_init( &D_blind );
|
|
|
|
#else
|
|
|
|
mbedtls_mpi_init( &DP_blind );
|
|
|
|
mbedtls_mpi_init( &DQ_blind );
|
2017-03-22 14:38:28 +01:00
|
|
|
#endif
|
2017-03-22 16:13:15 +01:00
|
|
|
}
|
2017-03-22 14:38:28 +01:00
|
|
|
|
2013-10-04 17:07:12 +02:00
|
|
|
|
2015-08-27 11:30:58 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
2013-10-04 17:07:12 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &T, input, ctx->len ) );
|
|
|
|
if( mbedtls_mpi_cmp_mpi( &T, &ctx->N ) >= 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-08-28 10:32:21 +02:00
|
|
|
ret = MBEDTLS_ERR_MPI_BAD_INPUT_DATA;
|
|
|
|
goto cleanup;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-08-30 15:37:02 +02:00
|
|
|
if( f_rng != NULL )
|
|
|
|
{
|
|
|
|
/*
|
2013-09-10 13:29:30 +02:00
|
|
|
* Blinding
|
|
|
|
* T = T * Vi mod N
|
2013-08-30 15:37:02 +02:00
|
|
|
*/
|
2015-08-27 11:30:58 +02:00
|
|
|
MBEDTLS_MPI_CHK( rsa_prepare_blinding( ctx, f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T, &T, &ctx->Vi ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &T, &T, &ctx->N ) );
|
2017-03-22 14:38:28 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Exponent blinding
|
|
|
|
*/
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &P1, &ctx->P, 1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &Q1, &ctx->Q, 1 ) );
|
|
|
|
|
2017-03-22 16:13:15 +01:00
|
|
|
#if defined(MBEDTLS_RSA_NO_CRT)
|
2017-03-22 14:38:28 +01:00
|
|
|
/*
|
|
|
|
* D_blind = ( P - 1 ) * ( Q - 1 ) * R + D
|
|
|
|
*/
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &R, RSA_EXPONENT_BLINDING,
|
|
|
|
f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &D_blind, &P1, &Q1 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &D_blind, &D_blind, &R ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &D_blind, &D_blind, &ctx->D ) );
|
|
|
|
|
|
|
|
D = &D_blind;
|
2017-03-22 16:13:15 +01:00
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* DP_blind = ( P - 1 ) * R + DP
|
|
|
|
*/
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &R, RSA_EXPONENT_BLINDING,
|
|
|
|
f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &DP_blind, &P1, &R ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &DP_blind, &DP_blind,
|
|
|
|
&ctx->DP ) );
|
|
|
|
|
|
|
|
DP = &DP_blind;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DQ_blind = ( Q - 1 ) * R + DQ
|
|
|
|
*/
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_fill_random( &R, RSA_EXPONENT_BLINDING,
|
|
|
|
f_rng, p_rng ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &DQ_blind, &Q1, &R ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &DQ_blind, &DQ_blind,
|
|
|
|
&ctx->DQ ) );
|
|
|
|
|
|
|
|
DQ = &DQ_blind;
|
2017-03-22 14:38:28 +01:00
|
|
|
#endif /* MBEDTLS_RSA_NO_CRT */
|
2013-08-30 15:37:02 +02:00
|
|
|
}
|
2013-08-30 11:00:25 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_NO_CRT)
|
2017-03-22 14:38:28 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &T, &T, D, &ctx->N, &ctx->RN ) );
|
2014-11-06 18:15:12 +01:00
|
|
|
#else
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
2017-03-22 14:38:28 +01:00
|
|
|
* Faster decryption using the CRT
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
|
|
|
* T1 = input ^ dP mod P
|
|
|
|
* T2 = input ^ dQ mod Q
|
|
|
|
*/
|
2017-03-22 16:13:15 +01:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &T1, &T, DP, &ctx->P, &ctx->RP ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &T2, &T, DQ, &ctx->Q, &ctx->RQ ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* T = (T1 - T2) * (Q^-1 mod P) mod P
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &T, &T1, &T2 ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T1, &T, &ctx->QP ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &T, &T1, &ctx->P ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
2013-08-30 15:37:02 +02:00
|
|
|
* T = T2 + T * Q
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T1, &T, &ctx->Q ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &T, &T2, &T1 ) );
|
|
|
|
#endif /* MBEDTLS_RSA_NO_CRT */
|
2013-08-30 11:00:25 +02:00
|
|
|
|
2013-08-30 15:37:02 +02:00
|
|
|
if( f_rng != NULL )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Unblind
|
2013-09-10 13:29:30 +02:00
|
|
|
* T = T * Vf mod N
|
2013-08-30 15:37:02 +02:00
|
|
|
*/
|
2015-08-27 11:30:58 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T, &T, &ctx->Vf ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &T, &T, &ctx->N ) );
|
2013-08-30 15:37:02 +02:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
olen = ctx->len;
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &T, output, olen ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
2015-08-28 10:32:21 +02:00
|
|
|
if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
|
2013-10-04 17:07:12 +02:00
|
|
|
#endif
|
2015-08-27 11:30:58 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &T ); mbedtls_mpi_free( &T1 ); mbedtls_mpi_free( &T2 );
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi_free( &P1 ); mbedtls_mpi_free( &Q1 ); mbedtls_mpi_free( &R );
|
|
|
|
|
|
|
|
if( f_rng != NULL )
|
|
|
|
{
|
2017-03-22 14:38:28 +01:00
|
|
|
#if defined(MBEDTLS_RSA_NO_CRT)
|
2017-03-22 16:13:15 +01:00
|
|
|
mbedtls_mpi_free( &D_blind );
|
|
|
|
#else
|
|
|
|
mbedtls_mpi_free( &DP_blind );
|
|
|
|
mbedtls_mpi_free( &DQ_blind );
|
2017-03-22 14:38:28 +01:00
|
|
|
#endif
|
2017-03-22 16:13:15 +01:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_PRIVATE_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2011-03-08 15:16:06 +01:00
|
|
|
/**
|
|
|
|
* Generate and apply the MGF1 operation (from PKCS#1 v2.1) to a buffer.
|
|
|
|
*
|
2011-11-10 14:33:51 +01:00
|
|
|
* \param dst buffer to mask
|
|
|
|
* \param dlen length of destination buffer
|
|
|
|
* \param src source of the mask generation
|
|
|
|
* \param slen length of the source buffer
|
|
|
|
* \param md_ctx message digest context to use
|
2011-03-08 15:16:06 +01:00
|
|
|
*/
|
2013-08-30 12:06:24 +02:00
|
|
|
static void mgf_mask( unsigned char *dst, size_t dlen, unsigned char *src,
|
2015-04-08 12:49:31 +02:00
|
|
|
size_t slen, mbedtls_md_context_t *md_ctx )
|
2011-03-08 15:16:06 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char mask[MBEDTLS_MD_MAX_SIZE];
|
2011-03-08 15:16:06 +01:00
|
|
|
unsigned char counter[4];
|
|
|
|
unsigned char *p;
|
2011-04-24 10:57:21 +02:00
|
|
|
unsigned int hlen;
|
|
|
|
size_t i, use_len;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( mask, 0, MBEDTLS_MD_MAX_SIZE );
|
2011-03-08 15:16:06 +01:00
|
|
|
memset( counter, 0, 4 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hlen = mbedtls_md_get_size( md_ctx->md_info );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Generate and apply dbMask */
|
2011-03-08 15:16:06 +01:00
|
|
|
p = dst;
|
|
|
|
|
|
|
|
while( dlen > 0 )
|
|
|
|
{
|
|
|
|
use_len = hlen;
|
|
|
|
if( dlen < hlen )
|
|
|
|
use_len = dlen;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_starts( md_ctx );
|
|
|
|
mbedtls_md_update( md_ctx, src, slen );
|
|
|
|
mbedtls_md_update( md_ctx, counter, 4 );
|
|
|
|
mbedtls_md_finish( md_ctx, mask );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
|
|
|
for( i = 0; i < use_len; ++i )
|
|
|
|
*p++ ^= mask[i];
|
|
|
|
|
|
|
|
counter[3]++;
|
|
|
|
|
|
|
|
dlen -= use_len;
|
|
|
|
}
|
2017-05-05 19:24:06 +02:00
|
|
|
|
|
|
|
mbedtls_zeroize( mask, sizeof( mask ) );
|
2011-03-08 15:16:06 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V21 */
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
2013-02-28 17:21:01 +01:00
|
|
|
* Implementation of the PKCS#1 v2.1 RSAES-OAEP-ENCRYPT function
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsaes_oaep_encrypt( mbedtls_rsa_context *ctx,
|
2013-02-28 17:21:01 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:33:49 +01:00
|
|
|
int mode,
|
|
|
|
const unsigned char *label, size_t label_len,
|
|
|
|
size_t ilen,
|
2013-02-28 17:21:01 +01:00
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-02-28 17:21:01 +01:00
|
|
|
size_t olen;
|
2012-01-14 19:10:38 +01:00
|
|
|
int ret;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *p = output;
|
2011-11-27 22:07:34 +01:00
|
|
|
unsigned int hlen;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_md_context_t md_ctx;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2014-06-02 16:47:02 +02:00
|
|
|
|
|
|
|
if( f_rng == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( (mbedtls_md_type_t) ctx->hash_id );
|
2013-02-28 17:21:01 +01:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
olen = ctx->len;
|
2015-04-08 12:49:31 +02:00
|
|
|
hlen = mbedtls_md_get_size( md_info );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* first comparison checks for overflow */
|
2016-02-08 15:52:29 +01:00
|
|
|
if( ilen + 2 * hlen + 2 < ilen || olen < ilen + 2 * hlen + 2 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
memset( output, 0, olen );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
*p++ = 0;
|
2010-07-18 10:29:32 +02:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Generate a random octet string seed */
|
2013-02-28 17:21:01 +01:00
|
|
|
if( ( ret = f_rng( p_rng, p, hlen ) ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_RNG_FAILED + ret );
|
2010-07-18 10:29:32 +02:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
p += hlen;
|
2010-07-18 10:29:32 +02:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Construct DB */
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md( md_info, label, label_len, p );
|
2013-02-28 17:21:01 +01:00
|
|
|
p += hlen;
|
|
|
|
p += olen - 2 * hlen - 2 - ilen;
|
|
|
|
*p++ = 1;
|
|
|
|
memcpy( p, input, ilen );
|
2012-05-19 10:43:48 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_init( &md_ctx );
|
2016-06-23 21:57:03 +02:00
|
|
|
if( ( ret = mbedtls_md_setup( &md_ctx, md_info, 0 ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_md_free( &md_ctx );
|
|
|
|
return( ret );
|
|
|
|
}
|
2012-05-19 10:43:48 +02:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* maskedDB: Apply dbMask to DB */
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( output + hlen + 1, olen - hlen - 1, output + 1, hlen,
|
|
|
|
&md_ctx );
|
2012-05-19 10:43:48 +02:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* maskedSeed: Apply seedMask to seed */
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( output + 1, hlen, output + hlen + 1, olen - hlen - 1,
|
|
|
|
&md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, output, output )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, output, output ) );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V21 */
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSAES-PKCS1-V1_5-ENCRYPT function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsaes_pkcs1_v15_encrypt( mbedtls_rsa_context *ctx,
|
2013-02-28 17:21:01 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode, size_t ilen,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output )
|
|
|
|
{
|
|
|
|
size_t nb_pad, olen;
|
|
|
|
int ret;
|
|
|
|
unsigned char *p = output;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2014-06-02 16:47:02 +02:00
|
|
|
|
2016-03-18 12:45:44 +01:00
|
|
|
// We don't check p_rng because it won't be dereferenced here
|
|
|
|
if( f_rng == NULL || input == NULL || output == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
olen = ctx->len;
|
2016-02-11 10:35:13 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* first comparison checks for overflow */
|
2016-02-08 15:52:29 +01:00
|
|
|
if( ilen + 11 < ilen || olen < ilen + 11 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-11-27 22:07:34 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
nb_pad = olen - 3 - ilen;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
*p++ = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PUBLIC )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_RSA_CRYPT;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
while( nb_pad-- > 0 )
|
|
|
|
{
|
|
|
|
int rng_dl = 100;
|
2013-01-03 11:08:31 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
do {
|
|
|
|
ret = f_rng( p_rng, p, 1 );
|
|
|
|
} while( *p == 0 && --rng_dl && ret == 0 );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Check if RNG failed to generate data */
|
2014-06-17 16:39:18 +02:00
|
|
|
if( rng_dl == 0 || ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_RNG_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_RSA_SIGN;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
while( nb_pad-- > 0 )
|
|
|
|
*p++ = 0xFF;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
*p++ = 0;
|
|
|
|
memcpy( p, input, ilen );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, output, output )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, output, output ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
2013-02-28 17:21:01 +01:00
|
|
|
* Add the message padding, then do an RSA operation
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_pkcs1_encrypt( mbedtls_rsa_context *ctx,
|
2013-02-28 17:21:01 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode, size_t ilen,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
|
|
|
switch( ctx->padding )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
|
|
|
case MBEDTLS_RSA_PKCS_V15:
|
|
|
|
return mbedtls_rsa_rsaes_pkcs1_v15_encrypt( ctx, f_rng, p_rng, mode, ilen,
|
2013-02-28 17:21:01 +01:00
|
|
|
input, output );
|
2013-08-30 12:06:24 +02:00
|
|
|
#endif
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
|
|
|
case MBEDTLS_RSA_PKCS_V21:
|
|
|
|
return mbedtls_rsa_rsaes_oaep_encrypt( ctx, f_rng, p_rng, mode, NULL, 0,
|
2013-02-28 17:21:01 +01:00
|
|
|
ilen, input, output );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSAES-OAEP-DECRYPT function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsaes_oaep_decrypt( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode,
|
2013-02-28 17:33:49 +01:00
|
|
|
const unsigned char *label, size_t label_len,
|
|
|
|
size_t *olen,
|
2013-02-28 17:21:01 +01:00
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_max_len )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
2013-11-29 12:49:44 +01:00
|
|
|
size_t ilen, i, pad_len;
|
|
|
|
unsigned char *p, bad, pad_done;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
|
|
|
unsigned char lhash[MBEDTLS_MD_MAX_SIZE];
|
2011-04-24 10:57:21 +02:00
|
|
|
unsigned int hlen;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_md_context_t md_ctx;
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/*
|
|
|
|
* Parameters sanity checks
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
ilen = ctx->len;
|
|
|
|
|
2011-06-09 15:55:13 +02:00
|
|
|
if( ilen < 16 || ilen > sizeof( buf ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( (mbedtls_md_type_t) ctx->hash_id );
|
2013-11-28 15:57:52 +01:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-11-28 15:57:52 +01:00
|
|
|
|
2016-02-11 12:08:18 +01:00
|
|
|
hlen = mbedtls_md_get_size( md_info );
|
|
|
|
|
|
|
|
// checking for integer underflow
|
|
|
|
if( 2 * hlen + 2 > ilen )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/*
|
|
|
|
* RSA operation
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, input, buf )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, input, buf );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
2017-03-23 14:37:37 +01:00
|
|
|
goto cleanup;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/*
|
2013-11-29 12:49:44 +01:00
|
|
|
* Unmask data and generate lHash
|
2013-11-28 15:57:52 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_init( &md_ctx );
|
2016-06-23 21:57:03 +02:00
|
|
|
if( ( ret = mbedtls_md_setup( &md_ctx, md_info, 0 ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_md_free( &md_ctx );
|
2017-03-23 14:37:37 +01:00
|
|
|
goto cleanup;
|
2016-06-23 21:57:03 +02:00
|
|
|
}
|
|
|
|
|
2012-05-19 10:43:48 +02:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/* Generate lHash */
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md( md_info, label, label_len, lhash );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/* seed: Apply seedMask to maskedSeed */
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( buf + 1, hlen, buf + hlen + 1, ilen - hlen - 1,
|
|
|
|
&md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/* DB: Apply dbMask to maskedDB */
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( buf + hlen + 1, ilen - hlen - 1, buf + 1, hlen,
|
|
|
|
&md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-11-28 15:57:52 +01:00
|
|
|
/*
|
2013-11-29 12:49:44 +01:00
|
|
|
* Check contents, in "constant-time"
|
2013-11-28 15:57:52 +01:00
|
|
|
*/
|
|
|
|
p = buf;
|
2013-11-29 12:49:44 +01:00
|
|
|
bad = 0;
|
2013-11-28 15:57:52 +01:00
|
|
|
|
2013-11-29 12:49:44 +01:00
|
|
|
bad |= *p++; /* First byte must be 0 */
|
2013-11-28 15:57:52 +01:00
|
|
|
|
|
|
|
p += hlen; /* Skip seed */
|
|
|
|
|
|
|
|
/* Check lHash */
|
2013-11-29 12:49:44 +01:00
|
|
|
for( i = 0; i < hlen; i++ )
|
|
|
|
bad |= lhash[i] ^ *p++;
|
|
|
|
|
|
|
|
/* Get zero-padding len, but always read till end of buffer
|
|
|
|
* (minus one, for the 01 byte) */
|
|
|
|
pad_len = 0;
|
|
|
|
pad_done = 0;
|
|
|
|
for( i = 0; i < ilen - 2 * hlen - 2; i++ )
|
|
|
|
{
|
|
|
|
pad_done |= p[i];
|
2015-03-11 16:49:45 +01:00
|
|
|
pad_len += ((pad_done | (unsigned char)-pad_done) >> 7) ^ 1;
|
2013-11-29 12:49:44 +01:00
|
|
|
}
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-11-29 12:49:44 +01:00
|
|
|
p += pad_len;
|
|
|
|
bad |= *p++ ^ 0x01;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-11-29 12:49:44 +01:00
|
|
|
/*
|
|
|
|
* The only information "leaked" is whether the padding was correct or not
|
|
|
|
* (eg, no data is copied if it was not correct). This meets the
|
|
|
|
* recommendations in PKCS#1 v2.2: an opponent cannot distinguish between
|
|
|
|
* the different error conditions.
|
|
|
|
*/
|
|
|
|
if( bad != 0 )
|
2017-03-23 14:37:37 +01:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_RSA_INVALID_PADDING;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
if( ilen - ( p - buf ) > output_max_len )
|
2017-03-23 14:37:37 +01:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
*olen = ilen - (p - buf);
|
|
|
|
memcpy( output, p, *olen );
|
2017-03-23 14:37:37 +01:00
|
|
|
ret = 0;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2017-03-23 14:37:37 +01:00
|
|
|
cleanup:
|
|
|
|
mbedtls_zeroize( buf, sizeof( buf ) );
|
|
|
|
mbedtls_zeroize( lhash, sizeof( lhash ) );
|
|
|
|
|
|
|
|
return( ret );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V21 */
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSAES-PKCS1-V1_5-DECRYPT function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsaes_pkcs1_v15_decrypt( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:21:01 +01:00
|
|
|
int mode, size_t *olen,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_max_len)
|
|
|
|
{
|
2013-11-30 13:36:53 +01:00
|
|
|
int ret;
|
|
|
|
size_t ilen, pad_count = 0, i;
|
|
|
|
unsigned char *p, bad, pad_done = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
ilen = ctx->len;
|
|
|
|
|
|
|
|
if( ilen < 16 || ilen > sizeof( buf ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, input, buf )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, input, buf );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
2017-03-23 14:37:37 +01:00
|
|
|
goto cleanup;
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
p = buf;
|
2013-11-30 13:36:53 +01:00
|
|
|
bad = 0;
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
/*
|
|
|
|
* Check and get padding len in "constant-time"
|
|
|
|
*/
|
|
|
|
bad |= *p++; /* First byte must be 0 */
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
/* This test does not depend on secret data */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
bad |= *p++ ^ MBEDTLS_RSA_CRYPT;
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
/* Get padding len, but always read till end of buffer
|
|
|
|
* (minus one, for the 00 byte) */
|
|
|
|
for( i = 0; i < ilen - 3; i++ )
|
|
|
|
{
|
2015-03-11 16:49:45 +01:00
|
|
|
pad_done |= ((p[i] | (unsigned char)-p[i]) >> 7) ^ 1;
|
|
|
|
pad_count += ((pad_done | (unsigned char)-pad_done) >> 7) ^ 1;
|
2013-11-30 13:36:53 +01:00
|
|
|
}
|
2013-02-28 18:06:26 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
p += pad_count;
|
|
|
|
bad |= *p++; /* Must be zero */
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
bad |= *p++ ^ MBEDTLS_RSA_SIGN;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
/* Get padding len, but always read till end of buffer
|
|
|
|
* (minus one, for the 00 byte) */
|
|
|
|
for( i = 0; i < ilen - 3; i++ )
|
|
|
|
{
|
2014-02-03 11:58:55 +01:00
|
|
|
pad_done |= ( p[i] != 0xFF );
|
2013-11-30 13:36:53 +01:00
|
|
|
pad_count += ( pad_done == 0 );
|
|
|
|
}
|
2013-02-28 18:06:26 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
p += pad_count;
|
|
|
|
bad |= *p++; /* Must be zero */
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2016-02-12 14:30:09 +01:00
|
|
|
bad |= ( pad_count < 8 );
|
2016-02-08 14:59:25 +01:00
|
|
|
|
2013-11-30 13:36:53 +01:00
|
|
|
if( bad )
|
2017-03-23 14:37:37 +01:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_RSA_INVALID_PADDING;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-02-28 18:06:26 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
if( ilen - ( p - buf ) > output_max_len )
|
2017-03-23 14:37:37 +01:00
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2009-01-12 22:48:39 +01:00
|
|
|
|
2011-06-09 15:55:13 +02:00
|
|
|
*olen = ilen - (p - buf);
|
2009-01-03 22:22:43 +01:00
|
|
|
memcpy( output, p, *olen );
|
2017-03-23 14:37:37 +01:00
|
|
|
ret = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-03-23 14:37:37 +01:00
|
|
|
cleanup:
|
|
|
|
mbedtls_zeroize( buf, sizeof( buf ) );
|
|
|
|
|
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
2013-02-28 17:21:01 +01:00
|
|
|
* Do an RSA operation, then remove the message padding
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_pkcs1_decrypt( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:21:01 +01:00
|
|
|
int mode, size_t *olen,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t output_max_len)
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-02-28 17:21:01 +01:00
|
|
|
switch( ctx->padding )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
|
|
|
case MBEDTLS_RSA_PKCS_V15:
|
|
|
|
return mbedtls_rsa_rsaes_pkcs1_v15_decrypt( ctx, f_rng, p_rng, mode, olen,
|
2013-08-30 10:30:02 +02:00
|
|
|
input, output, output_max_len );
|
2013-08-30 12:06:24 +02:00
|
|
|
#endif
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
|
|
|
case MBEDTLS_RSA_PKCS_V21:
|
|
|
|
return mbedtls_rsa_rsaes_oaep_decrypt( ctx, f_rng, p_rng, mode, NULL, 0,
|
2013-08-30 10:30:02 +02:00
|
|
|
olen, input, output,
|
|
|
|
output_max_len );
|
2013-02-28 17:21:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSASSA-PSS-SIGN function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsassa_pss_sign( mbedtls_rsa_context *ctx,
|
2013-02-28 17:21:01 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
|
|
|
unsigned char *sig )
|
|
|
|
{
|
|
|
|
size_t olen;
|
|
|
|
unsigned char *p = sig;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char salt[MBEDTLS_MD_MAX_SIZE];
|
2012-01-14 19:10:38 +01:00
|
|
|
unsigned int slen, hlen, offset = 0;
|
|
|
|
int ret;
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t msb;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_md_context_t md_ctx;
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2014-06-02 16:47:02 +02:00
|
|
|
|
|
|
|
if( f_rng == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
olen = ctx->len;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( md_alg != MBEDTLS_MD_NONE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Gather length of hash to sign */
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( md_alg );
|
2013-04-07 22:00:46 +02:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hashlen = mbedtls_md_get_size( md_info );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2009-02-09 23:32:35 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( (mbedtls_md_type_t) ctx->hash_id );
|
2013-02-28 17:21:01 +01:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hlen = mbedtls_md_get_size( md_info );
|
2013-02-28 17:21:01 +01:00
|
|
|
slen = hlen;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
if( olen < hlen + slen + 2 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
memset( sig, 0, olen );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Generate salt of length slen */
|
2013-02-28 17:21:01 +01:00
|
|
|
if( ( ret = f_rng( p_rng, salt, slen ) ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_RNG_FAILED + ret );
|
2011-03-25 14:58:48 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Note: EMSA-PSS encoding is over the length of N - 1 bits */
|
2015-06-18 16:47:17 +02:00
|
|
|
msb = mbedtls_mpi_bitlen( &ctx->N ) - 1;
|
2013-02-28 17:21:01 +01:00
|
|
|
p += olen - hlen * 2 - 2;
|
|
|
|
*p++ = 0x01;
|
|
|
|
memcpy( p, salt, slen );
|
|
|
|
p += slen;
|
2012-11-14 13:39:52 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_init( &md_ctx );
|
2016-06-23 21:57:03 +02:00
|
|
|
if( ( ret = mbedtls_md_setup( &md_ctx, md_info, 0 ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_md_free( &md_ctx );
|
2017-05-05 19:24:06 +02:00
|
|
|
/* No need to zeroize salt: we didn't use it. */
|
2016-06-23 21:57:03 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Generate H = Hash( M' ) */
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_starts( &md_ctx );
|
|
|
|
mbedtls_md_update( &md_ctx, p, 8 );
|
|
|
|
mbedtls_md_update( &md_ctx, hash, hashlen );
|
|
|
|
mbedtls_md_update( &md_ctx, salt, slen );
|
|
|
|
mbedtls_md_finish( &md_ctx, p );
|
2017-05-05 19:24:06 +02:00
|
|
|
mbedtls_zeroize( salt, sizeof( salt ) );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Compensate for boundary condition when applying mask */
|
2013-02-28 17:21:01 +01:00
|
|
|
if( msb % 8 == 0 )
|
|
|
|
offset = 1;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* maskedDB: Apply dbMask to DB */
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( sig + offset, olen - hlen - 1 - offset, p, hlen, &md_ctx );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
2013-01-03 11:08:31 +01:00
|
|
|
|
2015-06-18 16:47:17 +02:00
|
|
|
msb = mbedtls_mpi_bitlen( &ctx->N ) - 1;
|
2013-02-28 17:21:01 +01:00
|
|
|
sig[0] &= 0xFF >> ( olen * 8 - msb );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
p += hlen;
|
|
|
|
*p++ = 0xBC;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, sig, sig )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, sig, sig ) );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V21 */
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSASSA-PKCS1-V1_5-SIGN function
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Do an RSA operation to sign the message digest
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsassa_pkcs1_v15_sign( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:21:01 +01:00
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
|
|
|
unsigned char *sig )
|
|
|
|
{
|
2013-04-07 22:00:46 +02:00
|
|
|
size_t nb_pad, olen, oid_size = 0;
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned char *p = sig;
|
2014-07-24 10:38:01 +02:00
|
|
|
const char *oid = NULL;
|
2015-09-03 20:03:15 +02:00
|
|
|
unsigned char *sig_try = NULL, *verif = NULL;
|
|
|
|
size_t i;
|
|
|
|
unsigned char diff;
|
|
|
|
volatile unsigned char diff_no_optimize;
|
|
|
|
int ret;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-01-03 10:50:31 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
olen = ctx->len;
|
2013-04-07 22:00:46 +02:00
|
|
|
nb_pad = olen - 3;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( md_alg != MBEDTLS_MD_NONE )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info = mbedtls_md_info_from_type( md_alg );
|
2013-04-07 22:00:46 +02:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_oid_get_oid_by_md( md_alg, &oid, &oid_size ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-04-07 22:00:46 +02:00
|
|
|
nb_pad -= 10 + oid_size;
|
2009-02-09 23:32:35 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hashlen = mbedtls_md_get_size( md_info );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2013-04-07 22:00:46 +02:00
|
|
|
nb_pad -= hashlen;
|
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
if( ( nb_pad < 8 ) || ( nb_pad > olen ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
*p++ = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_RSA_SIGN;
|
2013-02-28 17:21:01 +01:00
|
|
|
memset( p, 0xFF, nb_pad );
|
|
|
|
p += nb_pad;
|
|
|
|
*p++ = 0;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( md_alg == MBEDTLS_MD_NONE )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
2013-04-07 22:00:46 +02:00
|
|
|
memcpy( p, hash, hashlen );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* DigestInfo ::= SEQUENCE {
|
|
|
|
* digestAlgorithm DigestAlgorithmIdentifier,
|
|
|
|
* digest Digest }
|
|
|
|
*
|
|
|
|
* DigestAlgorithmIdentifier ::= AlgorithmIdentifier
|
|
|
|
*
|
|
|
|
* Digest ::= OCTET STRING
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_ASN1_SEQUENCE | MBEDTLS_ASN1_CONSTRUCTED;
|
2013-10-11 18:58:55 +02:00
|
|
|
*p++ = (unsigned char) ( 0x08 + oid_size + hashlen );
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_ASN1_SEQUENCE | MBEDTLS_ASN1_CONSTRUCTED;
|
2013-10-11 18:58:55 +02:00
|
|
|
*p++ = (unsigned char) ( 0x04 + oid_size );
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_ASN1_OID;
|
2013-10-11 18:58:55 +02:00
|
|
|
*p++ = oid_size & 0xFF;
|
2013-04-07 22:00:46 +02:00
|
|
|
memcpy( p, oid, oid_size );
|
|
|
|
p += oid_size;
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_ASN1_NULL;
|
2013-04-07 22:00:46 +02:00
|
|
|
*p++ = 0x00;
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_ASN1_OCTET_STRING;
|
2013-04-07 22:00:46 +02:00
|
|
|
*p++ = hashlen;
|
|
|
|
memcpy( p, hash, hashlen );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-09-03 20:03:15 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
return( mbedtls_rsa_public( ctx, sig, sig ) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In order to prevent Lenstra's attack, make the signature in a
|
|
|
|
* temporary buffer and check it before returning it.
|
|
|
|
*/
|
|
|
|
sig_try = mbedtls_calloc( 1, ctx->len );
|
2016-01-01 22:42:47 +01:00
|
|
|
if( sig_try == NULL )
|
|
|
|
return( MBEDTLS_ERR_MPI_ALLOC_FAILED );
|
|
|
|
|
2015-09-03 20:03:15 +02:00
|
|
|
verif = mbedtls_calloc( 1, ctx->len );
|
2016-01-01 22:42:47 +01:00
|
|
|
if( verif == NULL )
|
|
|
|
{
|
|
|
|
mbedtls_free( sig_try );
|
2015-09-03 20:03:15 +02:00
|
|
|
return( MBEDTLS_ERR_MPI_ALLOC_FAILED );
|
2016-01-01 22:42:47 +01:00
|
|
|
}
|
2015-09-03 20:03:15 +02:00
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_rsa_private( ctx, f_rng, p_rng, sig, sig_try ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_rsa_public( ctx, sig_try, verif ) );
|
|
|
|
|
|
|
|
/* Compare in constant time just in case */
|
|
|
|
for( diff = 0, i = 0; i < ctx->len; i++ )
|
|
|
|
diff |= verif[i] ^ sig[i];
|
|
|
|
diff_no_optimize = diff;
|
|
|
|
|
|
|
|
if( diff_no_optimize != 0 )
|
|
|
|
{
|
|
|
|
ret = MBEDTLS_ERR_RSA_PRIVATE_FAILED;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy( sig, sig_try, ctx->len );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
mbedtls_free( sig_try );
|
|
|
|
mbedtls_free( verif );
|
|
|
|
|
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
2013-02-28 17:21:01 +01:00
|
|
|
* Do an RSA operation to sign the message digest
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_pkcs1_sign( mbedtls_rsa_context *ctx,
|
2013-02-28 17:21:01 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
|
|
|
unsigned char *sig )
|
|
|
|
{
|
|
|
|
switch( ctx->padding )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
|
|
|
case MBEDTLS_RSA_PKCS_V15:
|
|
|
|
return mbedtls_rsa_rsassa_pkcs1_v15_sign( ctx, f_rng, p_rng, mode, md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
hashlen, hash, sig );
|
2013-08-30 12:06:24 +02:00
|
|
|
#endif
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
|
|
|
case MBEDTLS_RSA_PKCS_V21:
|
|
|
|
return mbedtls_rsa_rsassa_pss_sign( ctx, f_rng, p_rng, mode, md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
hashlen, hash, sig );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSASSA-PSS-VERIFY function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsassa_pss_verify_ext( mbedtls_rsa_context *ctx,
|
2014-06-03 11:44:06 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2014-06-03 11:44:06 +02:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t mgf1_hash_id,
|
2014-06-03 11:44:06 +02:00
|
|
|
int expected_salt_len,
|
|
|
|
const unsigned char *sig )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
2013-02-28 17:21:01 +01:00
|
|
|
size_t siglen;
|
|
|
|
unsigned char *p;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char result[MBEDTLS_MD_MAX_SIZE];
|
2011-03-08 15:16:06 +01:00
|
|
|
unsigned char zeros[8];
|
2011-04-24 10:57:21 +02:00
|
|
|
unsigned int hlen;
|
|
|
|
size_t slen, msb;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_md_context_t md_ctx;
|
2016-04-13 12:48:25 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V21 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
siglen = ctx->len;
|
|
|
|
|
2011-06-09 15:55:13 +02:00
|
|
|
if( siglen < 16 || siglen > sizeof( buf ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, sig, buf )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, sig, buf );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
p = buf;
|
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
if( buf[siglen - 1] != 0xBC )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( md_alg != MBEDTLS_MD_NONE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Gather length of hash to sign */
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( md_alg );
|
2013-04-07 22:00:46 +02:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hashlen = mbedtls_md_get_size( md_info );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( mgf1_hash_id );
|
2013-02-28 17:21:01 +01:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
hlen = mbedtls_md_get_size( md_info );
|
2014-06-03 11:44:06 +02:00
|
|
|
slen = siglen - hlen - 1; /* Currently length of salt + padding */
|
2013-01-03 11:08:31 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
memset( zeros, 0, 8 );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/*
|
|
|
|
* Note: EMSA-PSS verification is over the length of N - 1 bits
|
|
|
|
*/
|
2015-06-18 16:47:17 +02:00
|
|
|
msb = mbedtls_mpi_bitlen( &ctx->N ) - 1;
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/* Compensate for boundary condition when applying mask */
|
2013-02-28 17:21:01 +01:00
|
|
|
if( msb % 8 == 0 )
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
siglen -= 1;
|
|
|
|
}
|
|
|
|
if( buf[0] >> ( 8 - siglen * 8 + msb ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2011-03-08 15:16:06 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_init( &md_ctx );
|
2016-06-23 21:57:03 +02:00
|
|
|
if( ( ret = mbedtls_md_setup( &md_ctx, md_info, 0 ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_md_free( &md_ctx );
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
mgf_mask( p, siglen - hlen - 1, p + siglen - hlen - 1, hlen, &md_ctx );
|
2011-03-25 14:58:48 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
buf[0] &= 0xFF >> ( siglen * 8 - msb );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-12-31 11:43:01 +01:00
|
|
|
while( p < buf + siglen && *p == 0 )
|
2013-02-28 17:21:01 +01:00
|
|
|
p++;
|
2013-01-03 10:50:31 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
if( p == buf + siglen ||
|
|
|
|
*p++ != 0x01 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
|
2014-06-03 11:44:06 +02:00
|
|
|
/* Actual salt len */
|
2013-02-28 17:21:01 +01:00
|
|
|
slen -= p - buf;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( expected_salt_len != MBEDTLS_RSA_SALT_LEN_ANY &&
|
2014-06-03 11:44:06 +02:00
|
|
|
slen != (size_t) expected_salt_len )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2014-06-03 11:44:06 +02:00
|
|
|
}
|
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/*
|
|
|
|
* Generate H = Hash( M' )
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_starts( &md_ctx );
|
|
|
|
mbedtls_md_update( &md_ctx, zeros, 8 );
|
|
|
|
mbedtls_md_update( &md_ctx, hash, hashlen );
|
|
|
|
mbedtls_md_update( &md_ctx, p, slen );
|
|
|
|
mbedtls_md_finish( &md_ctx, result );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_free( &md_ctx );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
if( memcmp( p + slen, result, hlen ) == 0 )
|
|
|
|
return( 0 );
|
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
2014-06-03 11:44:06 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Simplified PKCS#1 v2.1 RSASSA-PSS-VERIFY function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsassa_pss_verify( mbedtls_rsa_context *ctx,
|
2014-06-03 11:44:06 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2014-06-03 11:44:06 +02:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
|
|
|
const unsigned char *sig )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t mgf1_hash_id = ( ctx->hash_id != MBEDTLS_MD_NONE )
|
|
|
|
? (mbedtls_md_type_t) ctx->hash_id
|
2014-06-03 11:44:06 +02:00
|
|
|
: md_alg;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_rsa_rsassa_pss_verify_ext( ctx, f_rng, p_rng, mode,
|
2014-06-03 11:44:06 +02:00
|
|
|
md_alg, hashlen, hash,
|
2015-04-08 12:49:31 +02:00
|
|
|
mgf1_hash_id, MBEDTLS_RSA_SALT_LEN_ANY,
|
2014-06-03 11:44:06 +02:00
|
|
|
sig ) );
|
|
|
|
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V21 */
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the PKCS#1 v2.1 RSASSA-PKCS1-v1_5-VERIFY function
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_rsassa_pkcs1_v15_verify( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:21:01 +01:00
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
2013-08-12 11:34:35 +02:00
|
|
|
const unsigned char *sig )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2013-04-07 22:00:46 +02:00
|
|
|
size_t len, siglen, asn1_len;
|
2017-05-03 18:32:21 +02:00
|
|
|
unsigned char *p, *p0, *end;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t msg_md_alg;
|
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_asn1_buf oid;
|
2016-04-13 12:48:25 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE];
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mode == MBEDTLS_RSA_PRIVATE && ctx->padding != MBEDTLS_RSA_PKCS_V15 )
|
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
siglen = ctx->len;
|
|
|
|
|
|
|
|
if( siglen < 16 || siglen > sizeof( buf ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = ( mode == MBEDTLS_RSA_PUBLIC )
|
|
|
|
? mbedtls_rsa_public( ctx, sig, buf )
|
|
|
|
: mbedtls_rsa_private( ctx, f_rng, p_rng, sig, buf );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
p = buf;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( *p++ != 0 || *p++ != MBEDTLS_RSA_SIGN )
|
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
while( *p != 0 )
|
|
|
|
{
|
|
|
|
if( p >= buf + siglen - 1 || *p != 0xFF )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
p++;
|
|
|
|
}
|
2017-05-11 12:49:51 +02:00
|
|
|
p++; /* skip 00 byte */
|
|
|
|
|
|
|
|
/* We've read: 00 01 PS 00 where PS must be at least 8 bytes */
|
|
|
|
if( p - buf < 11 )
|
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
|
|
|
len = siglen - ( p - buf );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( len == hashlen && md_alg == MBEDTLS_MD_NONE )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
2013-04-07 22:00:46 +02:00
|
|
|
if( memcmp( p, hash, hashlen ) == 0 )
|
2013-02-28 17:21:01 +01:00
|
|
|
return( 0 );
|
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
md_info = mbedtls_md_info_from_type( md_alg );
|
2013-04-07 22:00:46 +02:00
|
|
|
if( md_info == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
|
|
|
hashlen = mbedtls_md_get_size( md_info );
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2013-04-07 22:00:46 +02:00
|
|
|
end = p + len;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2016-03-01 22:19:12 +01:00
|
|
|
/*
|
2017-05-04 12:48:39 +02:00
|
|
|
* Parse the ASN.1 structure inside the PKCS#1 v1.5 structure.
|
|
|
|
* Insist on 2-byte length tags, to protect against variants of
|
|
|
|
* Bleichenbacher's forgery attack against lax PKCS#1v1.5 verification.
|
2016-03-01 22:19:12 +01:00
|
|
|
*/
|
2017-05-03 18:32:21 +02:00
|
|
|
p0 = p;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_asn1_get_tag( &p, end, &asn1_len,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2017-05-03 18:32:21 +02:00
|
|
|
if( p != p0 + 2 || asn1_len + 2 != len )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-05-04 12:48:39 +02:00
|
|
|
p0 = p;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_asn1_get_tag( &p, end, &asn1_len,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2017-05-04 12:48:39 +02:00
|
|
|
if( p != p0 + 2 || asn1_len + 6 + hashlen != len )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
2017-05-04 12:48:39 +02:00
|
|
|
p0 = p;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_asn1_get_tag( &p, end, &oid.len, MBEDTLS_ASN1_OID ) ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2017-05-04 12:48:39 +02:00
|
|
|
if( p != p0 + 2 )
|
2017-05-03 18:32:21 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
oid.p = p;
|
|
|
|
p += oid.len;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_oid_get_md_alg( &oid, &msg_md_alg ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
if( md_alg != msg_md_alg )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* assume the algorithm parameters must be NULL
|
|
|
|
*/
|
2017-05-04 12:48:39 +02:00
|
|
|
p0 = p;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_asn1_get_tag( &p, end, &asn1_len, MBEDTLS_ASN1_NULL ) ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2017-05-04 12:48:39 +02:00
|
|
|
if( p != p0 + 2 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
2017-05-03 18:32:21 +02:00
|
|
|
p0 = p;
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_asn1_get_tag( &p, end, &asn1_len, MBEDTLS_ASN1_OCTET_STRING ) ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2017-05-03 18:32:21 +02:00
|
|
|
if( p != p0 + 2 || asn1_len != hashlen )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
if( memcmp( p, hash, hashlen ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
p += hashlen;
|
|
|
|
|
|
|
|
if( p != end )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_VERIFY_FAILED );
|
2013-04-07 22:00:46 +02:00
|
|
|
|
|
|
|
return( 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-02-28 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Do an RSA operation and check the message digest
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_pkcs1_verify( mbedtls_rsa_context *ctx,
|
2013-08-30 10:30:02 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
2013-02-28 17:21:01 +01:00
|
|
|
int mode,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_md_type_t md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
unsigned int hashlen,
|
|
|
|
const unsigned char *hash,
|
2013-08-12 11:34:35 +02:00
|
|
|
const unsigned char *sig )
|
2013-02-28 17:21:01 +01:00
|
|
|
{
|
|
|
|
switch( ctx->padding )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
|
|
|
case MBEDTLS_RSA_PKCS_V15:
|
|
|
|
return mbedtls_rsa_rsassa_pkcs1_v15_verify( ctx, f_rng, p_rng, mode, md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
hashlen, hash, sig );
|
2013-08-30 12:06:24 +02:00
|
|
|
#endif
|
2013-02-28 17:21:01 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V21)
|
|
|
|
case MBEDTLS_RSA_PKCS_V21:
|
|
|
|
return mbedtls_rsa_rsassa_pss_verify( ctx, f_rng, p_rng, mode, md_alg,
|
2013-02-28 17:21:01 +01:00
|
|
|
hashlen, hash, sig );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_RSA_INVALID_PADDING );
|
2013-02-28 17:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-14 13:39:57 +02:00
|
|
|
/*
|
|
|
|
* Copy the components of an RSA key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_copy( mbedtls_rsa_context *dst, const mbedtls_rsa_context *src )
|
2013-08-14 13:39:57 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
dst->ver = src->ver;
|
|
|
|
dst->len = src->len;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->N, &src->N ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->E, &src->E ) );
|
2013-08-14 13:39:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->D, &src->D ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->P, &src->P ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->Q, &src->Q ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->DP, &src->DP ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->DQ, &src->DQ ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->QP, &src->QP ) );
|
2013-08-14 13:39:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->RN, &src->RN ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->RP, &src->RP ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->RQ, &src->RQ ) );
|
2013-08-14 13:39:57 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->Vi, &src->Vi ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &dst->Vf, &src->Vf ) );
|
2013-09-10 13:29:30 +02:00
|
|
|
|
2013-08-14 13:39:57 +02:00
|
|
|
dst->padding = src->padding;
|
2014-03-25 15:58:35 +01:00
|
|
|
dst->hash_id = src->hash_id;
|
2013-08-14 13:39:57 +02:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if( ret != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_free( dst );
|
2013-08-14 13:39:57 +02:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Free the components of an RSA key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_rsa_free( mbedtls_rsa_context *ctx )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &ctx->Vi ); mbedtls_mpi_free( &ctx->Vf );
|
|
|
|
mbedtls_mpi_free( &ctx->RQ ); mbedtls_mpi_free( &ctx->RP ); mbedtls_mpi_free( &ctx->RN );
|
|
|
|
mbedtls_mpi_free( &ctx->QP ); mbedtls_mpi_free( &ctx->DQ ); mbedtls_mpi_free( &ctx->DP );
|
|
|
|
mbedtls_mpi_free( &ctx->Q ); mbedtls_mpi_free( &ctx->P ); mbedtls_mpi_free( &ctx->D );
|
|
|
|
mbedtls_mpi_free( &ctx->E ); mbedtls_mpi_free( &ctx->N );
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_free( &ctx->mutex );
|
2013-09-29 14:58:17 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/sha1.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Example RSA-1024 keypair, for test purposes
|
|
|
|
*/
|
|
|
|
#define KEY_LEN 128
|
|
|
|
|
|
|
|
#define RSA_N "9292758453063D803DD603D5E777D788" \
|
|
|
|
"8ED1D5BF35786190FA2F23EBC0848AEA" \
|
|
|
|
"DDA92CA6C3D80B32C4D109BE0F36D6AE" \
|
|
|
|
"7130B9CED7ACDF54CFC7555AC14EEBAB" \
|
|
|
|
"93A89813FBF3C4F8066D2D800F7C38A8" \
|
|
|
|
"1AE31942917403FF4946B0A83D3D3E05" \
|
|
|
|
"EE57C6F5F5606FB5D4BC6CD34EE0801A" \
|
|
|
|
"5E94BB77B07507233A0BC7BAC8F90F79"
|
|
|
|
|
|
|
|
#define RSA_E "10001"
|
|
|
|
|
|
|
|
#define RSA_D "24BF6185468786FDD303083D25E64EFC" \
|
|
|
|
"66CA472BC44D253102F8B4A9D3BFA750" \
|
|
|
|
"91386C0077937FE33FA3252D28855837" \
|
|
|
|
"AE1B484A8A9A45F7EE8C0C634F99E8CD" \
|
|
|
|
"DF79C5CE07EE72C7F123142198164234" \
|
|
|
|
"CABB724CF78B8173B9F880FC86322407" \
|
|
|
|
"AF1FEDFDDE2BEB674CA15F3E81A1521E" \
|
|
|
|
"071513A1E85B5DFA031F21ECAE91A34D"
|
|
|
|
|
|
|
|
#define RSA_P "C36D0EB7FCD285223CFB5AABA5BDA3D8" \
|
|
|
|
"2C01CAD19EA484A87EA4377637E75500" \
|
|
|
|
"FCB2005C5C7DD6EC4AC023CDA285D796" \
|
|
|
|
"C3D9E75E1EFC42488BB4F1D13AC30A57"
|
|
|
|
|
|
|
|
#define RSA_Q "C000DF51A7C77AE8D7C7370C1FF55B69" \
|
|
|
|
"E211C2B9E5DB1ED0BF61D0D9899620F4" \
|
|
|
|
"910E4168387E3C30AA1E00C339A79508" \
|
|
|
|
"8452DD96A9A5EA5D9DCA68DA636032AF"
|
|
|
|
|
|
|
|
#define RSA_DP "C1ACF567564274FB07A0BBAD5D26E298" \
|
|
|
|
"3C94D22288ACD763FD8E5600ED4A702D" \
|
|
|
|
"F84198A5F06C2E72236AE490C93F07F8" \
|
|
|
|
"3CC559CD27BC2D1CA488811730BB5725"
|
|
|
|
|
|
|
|
#define RSA_DQ "4959CBF6F8FEF750AEE6977C155579C7" \
|
|
|
|
"D8AAEA56749EA28623272E4F7D0592AF" \
|
|
|
|
"7C1F1313CAC9471B5C523BFE592F517B" \
|
|
|
|
"407A1BD76C164B93DA2D32A383E58357"
|
|
|
|
|
|
|
|
#define RSA_QP "9AE7FBC99546432DF71896FC239EADAE" \
|
|
|
|
"F38D18D2B2F0E2DD275AA977E2BF4411" \
|
|
|
|
"F5A3B2A5D33605AEBBCCBA7FEB9F2D2F" \
|
|
|
|
"A74206CEC169D74BF5A8C50D6F48EA08"
|
|
|
|
|
|
|
|
#define PT_LEN 24
|
|
|
|
#define RSA_PT "\xAA\xBB\xCC\x03\x02\x01\x00\xFF\xFF\xFF\xFF\xFF" \
|
|
|
|
"\x11\x22\x33\x0A\x0B\x0C\xCC\xDD\xDD\xDD\xDD\xDD"
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2011-11-27 22:07:34 +01:00
|
|
|
static int myrand( void *rng_state, unsigned char *output, size_t len )
|
2010-07-18 11:00:25 +02:00
|
|
|
{
|
2014-04-30 16:02:38 +02:00
|
|
|
#if !defined(__OpenBSD__)
|
2011-11-27 22:07:34 +01:00
|
|
|
size_t i;
|
|
|
|
|
2010-07-18 11:00:25 +02:00
|
|
|
if( rng_state != NULL )
|
|
|
|
rng_state = NULL;
|
|
|
|
|
2011-11-27 22:07:34 +01:00
|
|
|
for( i = 0; i < len; ++i )
|
|
|
|
output[i] = rand();
|
2014-04-30 16:02:38 +02:00
|
|
|
#else
|
|
|
|
if( rng_state != NULL )
|
|
|
|
rng_state = NULL;
|
|
|
|
|
|
|
|
arc4random_buf( output, len );
|
|
|
|
#endif /* !OpenBSD */
|
2013-08-30 12:06:24 +02:00
|
|
|
|
2011-11-27 22:07:34 +01:00
|
|
|
return( 0 );
|
2010-07-18 11:00:25 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2010-07-18 11:00:25 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Checkup routine
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_rsa_self_test( int verbose )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2014-04-17 12:42:41 +02:00
|
|
|
int ret = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS1_V15)
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t len;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_context rsa;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char rsa_plaintext[PT_LEN];
|
|
|
|
unsigned char rsa_decrypted[PT_LEN];
|
|
|
|
unsigned char rsa_ciphertext[KEY_LEN];
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SHA1_C)
|
2011-05-26 15:16:06 +02:00
|
|
|
unsigned char sha1sum[20];
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_init( &rsa, MBEDTLS_RSA_PKCS_V15, 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
rsa.len = KEY_LEN;
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.N , 16, RSA_N ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.E , 16, RSA_E ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.D , 16, RSA_D ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.P , 16, RSA_P ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.Q , 16, RSA_Q ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.DP, 16, RSA_DP ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.DQ, 16, RSA_DQ ) );
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &rsa.QP, 16, RSA_QP ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " RSA key validation: " );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_check_pubkey( &rsa ) != 0 ||
|
|
|
|
mbedtls_rsa_check_privkey( &rsa ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n PKCS#1 encryption : " );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
memcpy( rsa_plaintext, RSA_PT, PT_LEN );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_pkcs1_encrypt( &rsa, myrand, NULL, MBEDTLS_RSA_PUBLIC, PT_LEN,
|
2009-01-03 22:22:43 +01:00
|
|
|
rsa_plaintext, rsa_ciphertext ) != 0 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n PKCS#1 decryption : " );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_pkcs1_decrypt( &rsa, myrand, NULL, MBEDTLS_RSA_PRIVATE, &len,
|
2009-01-12 22:48:39 +01:00
|
|
|
rsa_ciphertext, rsa_decrypted,
|
2011-04-24 10:57:21 +02:00
|
|
|
sizeof(rsa_decrypted) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( memcmp( rsa_decrypted, rsa_plaintext, len ) != 0 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2015-08-07 10:46:54 +02:00
|
|
|
if( verbose != 0 )
|
|
|
|
mbedtls_printf( "passed\n" );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SHA1_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( verbose != 0 )
|
2016-05-18 23:38:02 +02:00
|
|
|
mbedtls_printf( " PKCS#1 data sign : " );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_sha1( rsa_plaintext, PT_LEN, sha1sum );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_pkcs1_sign( &rsa, myrand, NULL, MBEDTLS_RSA_PRIVATE, MBEDTLS_MD_SHA1, 0,
|
2009-01-03 22:22:43 +01:00
|
|
|
sha1sum, rsa_ciphertext ) != 0 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n PKCS#1 sig. verify: " );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_rsa_pkcs1_verify( &rsa, NULL, NULL, MBEDTLS_RSA_PUBLIC, MBEDTLS_MD_SHA1, 0,
|
2009-01-03 22:22:43 +01:00
|
|
|
sha1sum, rsa_ciphertext ) != 0 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-08-07 10:46:54 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SHA1_C */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-08-07 10:46:54 +02:00
|
|
|
if( verbose != 0 )
|
|
|
|
mbedtls_printf( "\n" );
|
|
|
|
|
2014-04-17 12:42:41 +02:00
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_free( &rsa );
|
|
|
|
#else /* MBEDTLS_PKCS1_V15 */
|
2013-09-15 17:42:50 +02:00
|
|
|
((void) verbose);
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PKCS1_V15 */
|
2014-04-17 12:42:41 +02:00
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_RSA_C */
|