commit | 2692a30c1b510ecb815d683b5ab0a4bf9e6b5ce0 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 10 10:30:15 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Wed Jul 17 15:59:41 2013 +0200 |
tree | f79411d287333c2da176cf5680c330d1f0466df2 | |
parent | 1e60cd09b084add46037e24af6ab6b5b9c7de180 [diff] |
Relax ifdef's in pk.h by analogy with md.h
diff --git a/include/polarssl/pk.h b/include/polarssl/pk.h index 29aec30..7a54c71 100644 --- a/include/polarssl/pk.h +++ b/include/polarssl/pk.h
@@ -45,16 +45,10 @@ */ 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; /**