commit | ed27a041e473eea79a57b758e09b13569e95781f | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Thu Apr 18 22:46:23 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Thu Apr 18 23:12:34 2013 +0200 |
tree | 10dafbdc8520e5cfd6cf42da024c41af3a21d57e | |
parent | 7e5e7ca205f987c8ee1b83e342017efae593e697 [diff] [blame] |
More granular define selections within code to allow for smaller code sizes
diff --git a/include/polarssl/rsa.h b/include/polarssl/rsa.h index 8342eec..9078111 100644 --- a/include/polarssl/rsa.h +++ b/include/polarssl/rsa.h
@@ -27,6 +27,10 @@ #ifndef POLARSSL_RSA_H #define POLARSSL_RSA_H +#include "config.h" + +#if defined(POLARSSL_RSA_C) + #include "bignum.h" #include "md.h" @@ -520,4 +524,6 @@ } #endif +#endif /* POLARSSL_RSA_C */ + #endif /* rsa.h */