1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Add configuration item for the PK module

This commit is contained in:
Manuel Pégourié-Gonnard
2013-08-22 13:29:31 +02:00
parent 0d42049440
commit c40b4c3708
3 changed files with 28 additions and 4 deletions

View File

@@ -25,6 +25,8 @@
#include "polarssl/config.h"
#if defined(POLARSSL_PK_C)
#include "polarssl/pk.h"
#include "polarssl/pk_wrap.h"
@@ -251,3 +253,5 @@ const char * pk_get_name( const pk_context *ctx )
return( ctx->pk_info->name );
}
#endif /* POLARSSL_PK_C */

View File

@@ -25,6 +25,8 @@
#include "polarssl/config.h"
#if defined(POLARSSL_PK_C)
#include "polarssl/pk_wrap.h"
#if defined(POLARSSL_RSA_C)
@@ -410,3 +412,5 @@ const pk_info_t rsa_alt_info = {
rsa_alt_free_wrap,
NULL,
};
#endif /* POLARSSL_PK_C */