2013-07-04 11:31:32 +00:00
|
|
|
/*
|
|
|
|
* Public Key abstraction layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "polarssl/config.h"
|
|
|
|
|
2013-07-09 08:35:54 +00:00
|
|
|
#include "polarssl/pk.h"
|
2013-08-12 15:06:05 +00:00
|
|
|
#include "polarssl/pk_wrap.h"
|
2013-07-09 08:35:54 +00:00
|
|
|
|
|
|
|
#if defined(POLARSSL_RSA_C)
|
2013-07-04 11:31:32 +00:00
|
|
|
#include "polarssl/rsa.h"
|
2013-07-09 08:35:54 +00:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_ECP_C)
|
2013-07-04 11:31:32 +00:00
|
|
|
#include "polarssl/ecp.h"
|
2013-07-09 08:35:54 +00:00
|
|
|
#endif
|
2013-07-10 10:29:57 +00:00
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
|
|
|
#include "polarssl/ecdsa.h"
|
|
|
|
#endif
|
2013-07-04 11:31:32 +00:00
|
|
|
|
2013-07-25 09:25:09 +00:00
|
|
|
#if defined(POLARSSL_MEMORY_C)
|
|
|
|
#include "polarssl/memory.h"
|
|
|
|
#else
|
|
|
|
#define polarssl_malloc malloc
|
|
|
|
#define polarssl_free free
|
|
|
|
#endif
|
|
|
|
|
2013-07-04 11:31:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise a pk_context
|
|
|
|
*/
|
|
|
|
void pk_init( pk_context *ctx )
|
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2013-08-12 15:06:05 +00:00
|
|
|
ctx->info = NULL;
|
2013-07-04 11:31:32 +00:00
|
|
|
ctx->type = POLARSSL_PK_NONE;
|
|
|
|
ctx->data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free (the components of) a pk_context
|
|
|
|
*/
|
|
|
|
void pk_free( pk_context *ctx )
|
|
|
|
{
|
2013-08-14 13:00:27 +00:00
|
|
|
if( ctx == NULL || ctx->info == NULL)
|
2013-07-04 11:31:32 +00:00
|
|
|
return;
|
|
|
|
|
2013-08-14 13:00:27 +00:00
|
|
|
ctx->info->ctx_free_func( ctx->data );
|
|
|
|
ctx->data = NULL;
|
|
|
|
|
|
|
|
ctx->info = NULL;
|
|
|
|
ctx->type = POLARSSL_PK_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get pk_info structure from type
|
|
|
|
*/
|
|
|
|
static const pk_info_t * pk_info_from_type( pk_type_t pk_type )
|
|
|
|
{
|
|
|
|
switch( pk_type ) {
|
2013-07-09 08:35:54 +00:00
|
|
|
#if defined(POLARSSL_RSA_C)
|
2013-08-14 13:00:27 +00:00
|
|
|
case POLARSSL_PK_RSA:
|
|
|
|
return &rsa_info;
|
2013-07-09 08:35:54 +00:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_ECP_C)
|
2013-08-14 13:00:27 +00:00
|
|
|
case POLARSSL_PK_ECKEY:
|
|
|
|
return &eckey_info;
|
|
|
|
case POLARSSL_PK_ECKEY_DH:
|
|
|
|
return &eckeydh_info;
|
2013-07-09 08:35:54 +00:00
|
|
|
#endif
|
2013-07-10 10:29:57 +00:00
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
2013-08-14 13:00:27 +00:00
|
|
|
case POLARSSL_PK_ECDSA:
|
|
|
|
return &ecdsa_info;
|
2013-07-10 10:29:57 +00:00
|
|
|
#endif
|
2013-08-14 13:00:27 +00:00
|
|
|
default:
|
|
|
|
return NULL;
|
2013-07-04 11:31:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a pk_context to a given type
|
|
|
|
*/
|
|
|
|
int pk_set_type( pk_context *ctx, pk_type_t type )
|
|
|
|
{
|
2013-08-12 15:06:05 +00:00
|
|
|
const pk_info_t *info;
|
2013-07-09 08:35:54 +00:00
|
|
|
|
2013-07-09 08:21:34 +00:00
|
|
|
if( ctx->type == type )
|
|
|
|
return( 0 );
|
|
|
|
|
|
|
|
if( ctx->type != POLARSSL_PK_NONE )
|
|
|
|
return( POLARSSL_ERR_PK_TYPE_MISMATCH );
|
|
|
|
|
2013-08-14 13:00:27 +00:00
|
|
|
if( ( info = pk_info_from_type( type ) ) == NULL )
|
2013-07-15 09:04:58 +00:00
|
|
|
return( POLARSSL_ERR_PK_TYPE_MISMATCH );
|
2013-07-04 11:31:32 +00:00
|
|
|
|
2013-08-14 13:00:27 +00:00
|
|
|
if( ( ctx->data = info->ctx_alloc_func() ) == NULL )
|
2013-07-09 08:04:07 +00:00
|
|
|
return( POLARSSL_ERR_PK_MALLOC_FAILED );
|
2013-07-04 11:31:32 +00:00
|
|
|
|
|
|
|
ctx->type = type;
|
2013-08-12 15:06:05 +00:00
|
|
|
ctx->info = info;
|
2013-07-04 11:31:32 +00:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|