From 2692a30c1b510ecb815d683b5ab0a4bf9e6b5ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 10 Jul 2013 10:30:15 +0200 Subject: [PATCH] Relax ifdef's in pk.h by analogy with md.h --- include/polarssl/pk.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/polarssl/pk.h b/include/polarssl/pk.h index 29aec309f..7a54c7142 100644 --- a/include/polarssl/pk.h +++ b/include/polarssl/pk.h @@ -45,16 +45,10 @@ extern "C" { */ typedef enum { POLARSSL_PK_NONE=0, -#if defined(POLARSSL_RSA_C) POLARSSL_PK_RSA, -#endif -#if defined(POLARSSL_ECP_C) POLARSSL_PK_ECKEY, POLARSSL_PK_ECKEY_DH, -#endif -#if defined(POLARSSL_ECDSA_C) POLARSSL_PK_ECDSA, -#endif } pk_type_t; /**