diff --git a/programs/aes/aescrypt2.c b/programs/aes/aescrypt2.c index 1f34748c5..be832e012 100644 --- a/programs/aes/aescrypt2.c +++ b/programs/aes/aescrypt2.c @@ -29,8 +29,19 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf +#endif + +#if defined(POLARSSL_AES_C) && defined(POLARSSL_SHA256_C) &&\ + defined(POLARSSL_FS_IO) +#include "polarssl/aes.h" +#include "polarssl/sha256.h" + +#include +#include +#include #endif #if defined(_WIN32) @@ -43,14 +54,6 @@ #include #endif -#include -#include -#include -#include - -#include "polarssl/aes.h" -#include "polarssl/sha256.h" - #define MODE_ENCRYPT 0 #define MODE_DECRYPT 1 @@ -60,12 +63,13 @@ "\n example: aescrypt2 0 file file.aes hex:E76B2413958B00E193\n" \ "\n" -#if !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) +#if !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) ||\ + !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); ((void) argv); - polarssl_printf("POLARSSL_AES_C and/or POLARSSL_SHA256_C not defined.\n"); + polarssl_printf("POLARSSL_AES_C and/or POLARSSL_SHA256_C and/or POLARSSL_FS_IO not defined.\n"); return( 0 ); } #else @@ -442,4 +446,4 @@ exit: return( ret ); } -#endif /* POLARSSL_AES_C && POLARSSL_SHA256_C */ +#endif /* POLARSSL_AES_C && POLARSSL_SHA256_C && POLARSSL_FS_IO */ diff --git a/programs/aes/crypt_and_hash.c b/programs/aes/crypt_and_hash.c index 7ad07b479..67b5f2b6b 100644 --- a/programs/aes/crypt_and_hash.c +++ b/programs/aes/crypt_and_hash.c @@ -30,8 +30,19 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf +#endif + +#if defined(POLARSSL_CIPHER_C) && defined(POLARSSL_MD_C) &&\ + defined(POLARSSL_FS_IO) +#include "polarssl/cipher.h" +#include "polarssl/md.h" + +#include +#include +#include #endif #if defined(_WIN32) @@ -44,14 +55,6 @@ #include #endif -#include -#include -#include -#include - -#include "polarssl/cipher.h" -#include "polarssl/md.h" - #define MODE_ENCRYPT 0 #define MODE_DECRYPT 1 @@ -61,13 +64,14 @@ "\n example: crypt_and_hash 0 file file.aes AES-128-CBC SHA1 hex:E76B2413958B00E193\n" \ "\n" -#if !defined(POLARSSL_CIPHER_C) || !defined(POLARSSL_MD_C) +#if !defined(POLARSSL_CIPHER_C) || !defined(POLARSSL_MD_C) ||\ + !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); ((void) argv); - polarssl_printf("POLARSSL_CIPHER_C and/or POLARSSL_MD_C not defined.\n"); + polarssl_printf("POLARSSL_CIPHER_C and/or POLARSSL_MD_C and/or POLARSSL_FS_IO not defined.\n"); return( 0 ); } #else @@ -542,4 +546,4 @@ exit: return( ret ); } -#endif /* POLARSSL_CIPHER_C && POLARSSL_MD_C */ +#endif /* POLARSSL_CIPHER_C && POLARSSL_MD_C && POLARSSL_FS_IO */ diff --git a/programs/hash/generic_sum.c b/programs/hash/generic_sum.c index 20ff25269..9183874d9 100644 --- a/programs/hash/generic_sum.c +++ b/programs/hash/generic_sum.c @@ -29,22 +29,25 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_MD_C) && defined(POLARSSL_FS_IO) #include "polarssl/md.h" -#if !defined(POLARSSL_MD_C) +#include +#include +#endif + +#if !defined(POLARSSL_MD_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); ((void) argv); - polarssl_printf("POLARSSL_MD_C not defined.\n"); + polarssl_printf("POLARSSL_MD_C and/or POLARSSL_FS_IO not defined.\n"); return( 0 ); } #else @@ -225,4 +228,4 @@ exit: return( ret ); } -#endif /* POLARSSL_MD_C */ +#endif /* POLARSSL_MD_C && POLARSSL_FS_IO */ diff --git a/programs/hash/hello.c b/programs/hash/hello.c index 7c0546e6c..384ade1c4 100644 --- a/programs/hash/hello.c +++ b/programs/hash/hello.c @@ -29,12 +29,13 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include - +#if defined(POLARSSL_MD5_C) #include "polarssl/md5.h" +#endif #if !defined(POLARSSL_MD5_C) int main( int argc, char *argv[] ) diff --git a/programs/hash/md5sum.c b/programs/hash/md5sum.c index 58c2d0c85..318fb77e8 100644 --- a/programs/hash/md5sum.c +++ b/programs/hash/md5sum.c @@ -29,15 +29,18 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_MD5_C) && defined(POLARSSL_FS_IO) #include "polarssl/md5.h" +#include +#include +#endif + #if !defined(POLARSSL_MD5_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { diff --git a/programs/hash/sha1sum.c b/programs/hash/sha1sum.c index 3eafc4f1b..1e247d8b1 100644 --- a/programs/hash/sha1sum.c +++ b/programs/hash/sha1sum.c @@ -29,15 +29,18 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_SHA1_C) && defined(POLARSSL_FS_IO) #include "polarssl/sha1.h" +#include +#include +#endif + #if !defined(POLARSSL_SHA1_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { diff --git a/programs/hash/sha2sum.c b/programs/hash/sha2sum.c index 3fc1baa8d..a9c569896 100644 --- a/programs/hash/sha2sum.c +++ b/programs/hash/sha2sum.c @@ -29,15 +29,18 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_SHA256_C) && defined(POLARSSL_FS_IO) #include "polarssl/sha256.h" +#include +#include +#endif + #if !defined(POLARSSL_SHA256_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { diff --git a/programs/pkey/dh_client.c b/programs/pkey/dh_client.c index f9a40b556..5c8470d44 100644 --- a/programs/pkey/dh_client.c +++ b/programs/pkey/dh_client.c @@ -29,12 +29,14 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_AES_C) && defined(POLARSSL_DHM_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_NET_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_SHA256_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/net.h" #include "polarssl/aes.h" #include "polarssl/dhm.h" @@ -43,6 +45,10 @@ #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + #define SERVER_NAME "localhost" #define SERVER_PORT 11999 diff --git a/programs/pkey/dh_genprime.c b/programs/pkey/dh_genprime.c index a06a7925b..6e0d01845 100644 --- a/programs/pkey/dh_genprime.c +++ b/programs/pkey/dh_genprime.c @@ -29,16 +29,21 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C) &&\ + defined(POLARSSL_GENPRIME) #include "polarssl/bignum.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + /* * Note: G = 4 is always a quadratic residue mod P, * so it is a generator of order Q (with P = 2*Q+1). diff --git a/programs/pkey/dh_server.c b/programs/pkey/dh_server.c index f37a2b8f6..7ccb818f2 100644 --- a/programs/pkey/dh_server.c +++ b/programs/pkey/dh_server.c @@ -29,12 +29,14 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_AES_C) && defined(POLARSSL_DHM_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_NET_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_SHA256_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/net.h" #include "polarssl/aes.h" #include "polarssl/dhm.h" @@ -43,6 +45,10 @@ #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + #define SERVER_PORT 11999 #define PLAINTEXT "==Hello there!==" diff --git a/programs/pkey/ecdsa.c b/programs/pkey/ecdsa.c index b53367361..8eaed553a 100644 --- a/programs/pkey/ecdsa.c +++ b/programs/pkey/ecdsa.c @@ -29,15 +29,18 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif +#if defined(POLARSSL_ECDSA_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/ecdsa.h" #include -#include +#endif /* * Uncomment to show key and signature details @@ -65,7 +68,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - #if defined(VERBOSE) static void dump_buf( const char *title, unsigned char *buf, size_t len ) { diff --git a/programs/pkey/gen_key.c b/programs/pkey/gen_key.c index 2d981abc5..b3531ff17 100644 --- a/programs/pkey/gen_key.c +++ b/programs/pkey/gen_key.c @@ -29,17 +29,12 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - -#if !defined(_WIN32) && defined(POLARSSL_FS_IO) -#include -#endif /* !_WIN32 && POLARSSL_FS_IO */ - +#if defined(POLARSSL_PK_WRITE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/error.h" #include "polarssl/pk.h" #include "polarssl/ecdsa.h" @@ -48,49 +43,12 @@ #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" -#if !defined(POLARSSL_PK_WRITE_C) || !defined(POLARSSL_FS_IO) || \ - !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); +#include +#include +#include - polarssl_printf( "POLARSSL_PK_WRITE_C and/or POLARSSL_FS_IO and/or " - "POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C " - "not defined.\n" ); - return( 0 ); -} -#else - -#define FORMAT_PEM 0 -#define FORMAT_DER 1 - -#define DFL_TYPE POLARSSL_PK_RSA -#define DFL_RSA_KEYSIZE 4096 -#define DFL_FILENAME "keyfile.key" -#define DFL_FORMAT FORMAT_PEM -#define DFL_USE_DEV_RANDOM 0 - -#if defined(POLARSSL_ECP_C) -#define DFL_EC_CURVE ecp_curve_list()->grp_id -#else -#define DFL_EC_CURVE 0 -#endif - -/* - * global options - */ -struct options -{ - int type; /* the type of key to generate */ - int rsa_keysize; /* length of key in bits */ - int ec_curve; /* curve identifier for EC keys */ - const char *filename; /* filename of the key file */ - int format; /* the output format to use */ - int use_dev_random; /* use /dev/random as entropy source */ -} opt; - -#if !defined(_WIN32) && defined(POLARSSL_FS_IO) +#if !defined(_WIN32) +#include #define DEV_RANDOM_THRESHOLD 32 @@ -127,8 +85,68 @@ int dev_random_entropy_poll( void *data, unsigned char *output, return( 0 ); } +#endif /* !_WIN32 */ +#endif + +#if defined(POLARSSL_ECP_C) +#define DFL_EC_CURVE ecp_curve_list()->grp_id +#else +#define DFL_EC_CURVE 0 +#endif + +#if !defined(_WIN32) && defined(POLARSSL_FS_IO) +#define USAGE_DEV_RANDOM \ + " use_dev_random=0|1 default: 0\n" +#else +#define USAGE_DEV_RANDOM "" #endif /* !_WIN32 && POLARSSL_FS_IO */ +#define FORMAT_PEM 0 +#define FORMAT_DER 1 + +#define DFL_TYPE POLARSSL_PK_RSA +#define DFL_RSA_KEYSIZE 4096 +#define DFL_FILENAME "keyfile.key" +#define DFL_FORMAT FORMAT_PEM +#define DFL_USE_DEV_RANDOM 0 + +#define USAGE \ + "\n usage: gen_key param=<>...\n" \ + "\n acceptable parameters:\n" \ + " type=rsa|ec default: rsa\n" \ + " rsa_keysize=%%d default: 4096\n" \ + " ec_curve=%%s see below\n" \ + " filename=%%s default: keyfile.key\n" \ + " format=pem|der default: pem\n" \ + USAGE_DEV_RANDOM \ + "\n" + +#if !defined(POLARSSL_PK_WRITE_C) || !defined(POLARSSL_FS_IO) || \ + !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf( "POLARSSL_PK_WRITE_C and/or POLARSSL_FS_IO and/or " + "POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C " + "not defined.\n" ); + return( 0 ); +} +#else +/* + * global options + */ +struct options +{ + int type; /* the type of key to generate */ + int rsa_keysize; /* length of key in bits */ + int ec_curve; /* curve identifier for EC keys */ + const char *filename; /* filename of the key file */ + int format; /* the output format to use */ + int use_dev_random; /* use /dev/random as entropy source */ +} opt; + static int write_private_key( pk_context *key, const char *output_file ) { int ret; @@ -168,24 +186,6 @@ static int write_private_key( pk_context *key, const char *output_file ) return( 0 ); } -#if !defined(_WIN32) && defined(POLARSSL_FS_IO) -#define USAGE_DEV_RANDOM \ - " use_dev_random=0|1 default: 0\n" -#else -#define USAGE_DEV_RANDOM "" -#endif /* !_WIN32 && POLARSSL_FS_IO */ - -#define USAGE \ - "\n usage: gen_key param=<>...\n" \ - "\n acceptable parameters:\n" \ - " type=rsa|ec default: rsa\n" \ - " rsa_keysize=%%d default: 4096\n" \ - " ec_curve=%%s see below\n" \ - " filename=%%s default: keyfile.key\n" \ - " format=pem|der default: pem\n" \ - USAGE_DEV_RANDOM \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/pkey/key_app.c b/programs/pkey/key_app.c index 04bad874e..f89f436ca 100644 --- a/programs/pkey/key_app.c +++ b/programs/pkey/key_app.c @@ -29,17 +29,39 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) &&\ + defined(POLARSSL_PK_PARSE_C) && defined(POLARSSL_FS_IO) #include "polarssl/error.h" #include "polarssl/rsa.h" #include "polarssl/x509.h" +#include +#endif + +#define MODE_NONE 0 +#define MODE_PRIVATE 1 +#define MODE_PUBLIC 2 + +#define DFL_MODE MODE_NONE +#define DFL_FILENAME "keyfile.key" +#define DFL_PASSWORD "" +#define DFL_PASSWORD_FILE "" +#define DFL_DEBUG_LEVEL 0 + +#define USAGE \ + "\n usage: key_app param=<>...\n" \ + "\n acceptable parameters:\n" \ + " mode=private|public default: none\n" \ + " filename=%%s default: keyfile.key\n" \ + " password=%%s default: \"\"\n" \ + " password_file=%%s default: \"\"\n" \ + "\n" + + #if !defined(POLARSSL_BIGNUM_C) || \ !defined(POLARSSL_PK_PARSE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) @@ -52,17 +74,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define MODE_NONE 0 -#define MODE_PRIVATE 1 -#define MODE_PUBLIC 2 - -#define DFL_MODE MODE_NONE -#define DFL_FILENAME "keyfile.key" -#define DFL_PASSWORD "" -#define DFL_PASSWORD_FILE "" -#define DFL_DEBUG_LEVEL 0 - /* * global options */ @@ -74,15 +85,6 @@ struct options const char *password_file; /* password_file for the private key */ } opt; -#define USAGE \ - "\n usage: key_app param=<>...\n" \ - "\n acceptable parameters:\n" \ - " mode=private|public default: none\n" \ - " filename=%%s default: keyfile.key\n" \ - " password=%%s default: \"\"\n" \ - " password_file=%%s default: \"\"\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/pkey/key_app_writer.c b/programs/pkey/key_app_writer.c index c9830c259..8fcd63185 100644 --- a/programs/pkey/key_app_writer.c +++ b/programs/pkey/key_app_writer.c @@ -29,27 +29,41 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_PK_WRITE_C) && defined(POLARSSL_FS_IO) #include "polarssl/error.h" #include "polarssl/pk.h" #include "polarssl/error.h" -#if !defined(POLARSSL_PK_WRITE_C) || !defined(POLARSSL_FS_IO) -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); +#include +#include +#endif - polarssl_printf( "POLARSSL_PK_WRITE_C and/or POLARSSL_FS_IO not defined.\n" ); - return( 0 ); -} +#if defined(POLARSSL_PEM_WRITE_C) +#define USAGE_OUT \ + " output_file=%%s default: keyfile.pem\n" \ + " output_format=pem|der default: pem\n" #else +#define USAGE_OUT \ + " output_file=%%s default: keyfile.der\n" \ + " output_format=der default: der\n" +#endif + +#if defined(POLARSSL_PEM_WRITE_C) +#define DFL_OUTPUT_FILENAME "keyfile.pem" +#define DFL_OUTPUT_FORMAT OUTPUT_FORMAT_PEM +#else +#define DFL_OUTPUT_FILENAME "keyfile.der" +#define DFL_OUTPUT_FORMAT OUTPUT_FORMAT_DER +#endif + +#define DFL_MODE MODE_NONE +#define DFL_FILENAME "keyfile.key" +#define DFL_DEBUG_LEVEL 0 +#define DFL_OUTPUT_MODE OUTPUT_MODE_NONE #define MODE_NONE 0 #define MODE_PRIVATE 1 @@ -62,18 +76,25 @@ int main( int argc, char *argv[] ) #define OUTPUT_FORMAT_PEM 0 #define OUTPUT_FORMAT_DER 1 -#define DFL_MODE MODE_NONE -#define DFL_FILENAME "keyfile.key" -#define DFL_DEBUG_LEVEL 0 -#define DFL_OUTPUT_MODE OUTPUT_MODE_NONE -#if defined(POLARSSL_PEM_WRITE_C) -#define DFL_OUTPUT_FILENAME "keyfile.pem" -#define DFL_OUTPUT_FORMAT OUTPUT_FORMAT_PEM -#else -#define DFL_OUTPUT_FILENAME "keyfile.der" -#define DFL_OUTPUT_FORMAT OUTPUT_FORMAT_DER -#endif +#define USAGE \ + "\n usage: key_app param=<>...\n" \ + "\n acceptable parameters:\n" \ + " mode=private|public default: none\n" \ + " filename=%%s default: keyfile.key\n" \ + " output_mode=private|public default: none\n" \ + USAGE_OUT \ + "\n" + +#if !defined(POLARSSL_PK_WRITE_C) || !defined(POLARSSL_FS_IO) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + polarssl_printf( "POLARSSL_PK_WRITE_C and/or POLARSSL_FS_IO not defined.\n" ); + return( 0 ); +} +#else /* * global options */ @@ -170,25 +191,6 @@ static int write_private_key( pk_context *key, const char *output_file ) return( 0 ); } -#if defined(POLARSSL_PEM_WRITE_C) -#define USAGE_OUT \ - " output_file=%%s default: keyfile.pem\n" \ - " output_format=pem|der default: pem\n" -#else -#define USAGE_OUT \ - " output_file=%%s default: keyfile.der\n" \ - " output_format=der default: der\n" -#endif - -#define USAGE \ - "\n usage: key_app param=<>...\n" \ - "\n acceptable parameters:\n" \ - " mode=private|public default: none\n" \ - " filename=%%s default: keyfile.key\n" \ - " output_mode=private|public default: none\n" \ - USAGE_OUT \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/pkey/mpi_demo.c b/programs/pkey/mpi_demo.c index b5ae13e07..a6d11987a 100644 --- a/programs/pkey/mpi_demo.c +++ b/programs/pkey/mpi_demo.c @@ -29,13 +29,16 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_FS_IO) #include "polarssl/bignum.h" +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { diff --git a/programs/pkey/pk_decrypt.c b/programs/pkey/pk_decrypt.c index 864469860..f2f8e59be 100644 --- a/programs/pkey/pk_decrypt.c +++ b/programs/pkey/pk_decrypt.c @@ -29,17 +29,23 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_PK_PARSE_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/error.h" #include "polarssl/pk.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_PK_PARSE_C) || \ !defined(POLARSSL_FS_IO) || !defined(POLARSSL_ENTROPY_C) || \ !defined(POLARSSL_CTR_DRBG_C) diff --git a/programs/pkey/pk_encrypt.c b/programs/pkey/pk_encrypt.c index 663c2ee7d..5e4276268 100644 --- a/programs/pkey/pk_encrypt.c +++ b/programs/pkey/pk_encrypt.c @@ -29,18 +29,23 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_PK_PARSE_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/error.h" #include "polarssl/pk.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_PK_PARSE_C) || \ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_FS_IO) || \ !defined(POLARSSL_CTR_DRBG_C) diff --git a/programs/pkey/pk_sign.c b/programs/pkey/pk_sign.c index 0d0293596..c11bc3a01 100644 --- a/programs/pkey/pk_sign.c +++ b/programs/pkey/pk_sign.c @@ -29,12 +29,14 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_SHA256_C) &&\ + defined(POLARSSL_PK_PARSE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/error.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" @@ -42,6 +44,10 @@ #include "polarssl/pk.h" #include "polarssl/sha1.h" +#include +#include +#endif + #if defined _MSC_VER && !defined snprintf #define snprintf _snprintf #endif diff --git a/programs/pkey/pk_verify.c b/programs/pkey/pk_verify.c index 55f977ccd..bed3261cc 100644 --- a/programs/pkey/pk_verify.c +++ b/programs/pkey/pk_verify.c @@ -29,17 +29,22 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) &&\ + defined(POLARSSL_SHA256_C) && defined(POLARSSL_PK_PARSE_C) &&\ + defined(POLARSSL_FS_IO) #include "polarssl/error.h" #include "polarssl/md.h" #include "polarssl/pk.h" #include "polarssl/sha1.h" +#include +#include +#endif + #if defined _MSC_VER && !defined snprintf #define snprintf _snprintf #endif diff --git a/programs/pkey/rsa_decrypt.c b/programs/pkey/rsa_decrypt.c index 8df5f0074..084619c6d 100644 --- a/programs/pkey/rsa_decrypt.c +++ b/programs/pkey/rsa_decrypt.c @@ -29,16 +29,21 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/rsa.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_FS_IO) || !defined(POLARSSL_ENTROPY_C) || \ !defined(POLARSSL_CTR_DRBG_C) diff --git a/programs/pkey/rsa_encrypt.c b/programs/pkey/rsa_encrypt.c index 58817e3f1..2f88209d7 100644 --- a/programs/pkey/rsa_encrypt.c +++ b/programs/pkey/rsa_encrypt.c @@ -29,17 +29,22 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/rsa.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_FS_IO) || \ !defined(POLARSSL_CTR_DRBG_C) diff --git a/programs/pkey/rsa_genkey.c b/programs/pkey/rsa_genkey.c index 56d327372..5741d4663 100644 --- a/programs/pkey/rsa_genkey.c +++ b/programs/pkey/rsa_genkey.c @@ -29,17 +29,22 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_GENPRIME) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/bignum.h" #include "polarssl/x509.h" #include "polarssl/rsa.h" + +#include +#include +#endif #define KEY_SIZE 1024 #define EXPONENT 65537 diff --git a/programs/pkey/rsa_sign.c b/programs/pkey/rsa_sign.c index f65c2a745..685db517e 100644 --- a/programs/pkey/rsa_sign.c +++ b/programs/pkey/rsa_sign.c @@ -29,16 +29,20 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_SHA256_C) && defined(POLARSSL_FS_IO) #include "polarssl/rsa.h" #include "polarssl/sha1.h" +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_SHA256_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) diff --git a/programs/pkey/rsa_sign_pss.c b/programs/pkey/rsa_sign_pss.c index de90b7ec0..3d84b6939 100644 --- a/programs/pkey/rsa_sign_pss.c +++ b/programs/pkey/rsa_sign_pss.c @@ -29,12 +29,14 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_SHA256_C) &&\ + defined(POLARSSL_PK_PARSE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/md.h" @@ -42,6 +44,10 @@ #include "polarssl/sha1.h" #include "polarssl/x509.h" +#include +#include +#endif + #if defined _MSC_VER && !defined snprintf #define snprintf _snprintf #endif diff --git a/programs/pkey/rsa_verify.c b/programs/pkey/rsa_verify.c index 4b4338074..7d9445149 100644 --- a/programs/pkey/rsa_verify.c +++ b/programs/pkey/rsa_verify.c @@ -29,15 +29,19 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_SHA256_C) && defined(POLARSSL_FS_IO) #include "polarssl/rsa.h" #include "polarssl/sha1.h" +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_SHA256_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) diff --git a/programs/pkey/rsa_verify_pss.c b/programs/pkey/rsa_verify_pss.c index dd625b480..5af230ddb 100644 --- a/programs/pkey/rsa_verify_pss.c +++ b/programs/pkey/rsa_verify_pss.c @@ -29,18 +29,23 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_SHA256_C) && defined(POLARSSL_PK_PARSE_C) &&\ + defined(POLARSSL_FS_IO) #include "polarssl/md.h" #include "polarssl/pem.h" #include "polarssl/pk.h" #include "polarssl/sha1.h" #include "polarssl/x509.h" +#include +#include +#endif + #if defined _MSC_VER && !defined snprintf #define snprintf _snprintf #endif diff --git a/programs/random/gen_entropy.c b/programs/random/gen_entropy.c index 0ff443f9c..3de168091 100644 --- a/programs/random/gen_entropy.c +++ b/programs/random/gen_entropy.c @@ -29,21 +29,24 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif +#if defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_FS_IO) #include "polarssl/entropy.h" #include +#endif -#if !defined(POLARSSL_ENTROPY_C) +#if !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); ((void) argv); - polarssl_printf("POLARSSL_ENTROPY_C not defined.\n"); + polarssl_printf("POLARSSL_ENTROPY_C and/or POLARSSL_FS_IO not defined.\n"); return( 0 ); } #else diff --git a/programs/random/gen_random_ctr_drbg.c b/programs/random/gen_random_ctr_drbg.c index c21e0948a..58d7368ad 100644 --- a/programs/random/gen_random_ctr_drbg.c +++ b/programs/random/gen_random_ctr_drbg.c @@ -29,22 +29,27 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif +#if defined(POLARSSL_CTR_DRBG_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_FS_IO) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include +#endif -#if !defined(POLARSSL_CTR_DRBG_C) || !defined(POLARSSL_ENTROPY_C) +#if !defined(POLARSSL_CTR_DRBG_C) || !defined(POLARSSL_ENTROPY_C) ||\ + !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); ((void) argv); - polarssl_printf("POLARSSL_CTR_DRBG_C or POLARSSL_ENTROPY_C not defined.\n"); + polarssl_printf("POLARSSL_CTR_DRBG_C and/or POLARSSL_ENTROPY_C and/or POLARSSL_FS_IO not defined.\n"); return( 0 ); } #else diff --git a/programs/random/gen_random_havege.c b/programs/random/gen_random_havege.c index 5336fc4e6..946d33414 100644 --- a/programs/random/gen_random_havege.c +++ b/programs/random/gen_random_havege.c @@ -29,16 +29,19 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif +#if defined(POLARSSL_HAVEGE_C) && defined(POLARSSL_FS_IO) #include "polarssl/havege.h" -#include #include +#include +#endif -#if !defined(POLARSSL_HAVEGE_C) +#if !defined(POLARSSL_HAVEGE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); diff --git a/programs/ssl/ssl_client1.c b/programs/ssl/ssl_client1.c index 10a21d18f..36be15f6c 100644 --- a/programs/ssl/ssl_client1.c +++ b/programs/ssl/ssl_client1.c @@ -29,13 +29,15 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_CLI_C) &&\ + defined(POLARSSL_NET_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_CTR_DRBG_C) && defined(POLARSSL_X509_CRT_PARSE_C) #include "polarssl/net.h" #include "polarssl/debug.h" #include "polarssl/ssl.h" @@ -44,6 +46,16 @@ #include "polarssl/error.h" #include "polarssl/certs.h" +#include +#include +#endif + +#define SERVER_PORT 4433 +#define SERVER_NAME "localhost" +#define GET_REQUEST "GET / HTTP/1.0\r\n\r\n" + +#define DEBUG_LEVEL 1 + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ !defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \ @@ -61,13 +73,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define SERVER_PORT 4433 -#define SERVER_NAME "localhost" -#define GET_REQUEST "GET / HTTP/1.0\r\n\r\n" - -#define DEBUG_LEVEL 1 - static void my_debug( void *ctx, int level, const char *str ) { ((void) level); diff --git a/programs/ssl/ssl_client2.c b/programs/ssl/ssl_client2.c index 0d4a0f209..4243ccafb 100644 --- a/programs/ssl/ssl_client2.c +++ b/programs/ssl/ssl_client2.c @@ -29,30 +29,14 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#if !defined(POLARSSL_ENTROPY_C) || \ - !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ - !defined(POLARSSL_NET_C) || !defined(POLARSSL_CTR_DRBG_C) -#include -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); - - polarssl_printf("POLARSSL_ENTROPY_C and/or " - "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or " - "POLARSSL_NET_C and/or POLARSSL_CTR_DRBG_C not defined.\n"); - return( 0 ); -} -#else - -#include -#include -#include - +#if defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_CLI_C) &&\ + defined(POLARSSL_NET_C) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/net.h" #include "polarssl/ssl.h" #include "polarssl/entropy.h" @@ -62,6 +46,11 @@ int main( int argc, char *argv[] ) #include "polarssl/error.h" #include "polarssl/debug.h" +#include +#include +#include +#endif + #if defined(POLARSSL_TIMING_C) #include "polarssl/timing.h" #endif @@ -108,6 +97,20 @@ int main( int argc, char *argv[] ) #define GET_REQUEST "GET %s HTTP/1.0\r\nExtra-header: " #define GET_REQUEST_END "\r\n\r\n" +#if !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_FS_IO) || \ + !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ + !defined(POLARSSL_NET_C) || !defined(POLARSSL_CTR_DRBG_C) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf("POLARSSL_ENTROPY_C and/or " + "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or " + "POLARSSL_NET_C and/or POLARSSL_CTR_DRBG_C not defined.\n"); + return( 0 ); +} +#else /* * global options */ diff --git a/programs/ssl/ssl_fork_server.c b/programs/ssl/ssl_fork_server.c index ee2e1b807..575160f84 100644 --- a/programs/ssl/ssl_fork_server.c +++ b/programs/ssl/ssl_fork_server.c @@ -29,23 +29,21 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif #if defined(_WIN32) #include #endif -#include -#include -#include -#include - -#if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32) -#include -#endif - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_CERTS_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SSL_TLS_C) &&\ + defined(POLARSSL_SSL_SRV_C) && defined(POLARSSL_NET_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_CTR_DRBG_C) &&\ + defined(POLARSSL_X509_CRT_PARSE_C) && defined(POLARSSL_TIMING_C) &&\ + defined(POLARSSL_FS_IO) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/certs.h" @@ -54,6 +52,15 @@ #include "polarssl/net.h" #include "polarssl/timing.h" +#include +#include +#include +#endif + +#if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32) +#include +#endif + #define HTTP_RESPONSE \ "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \ "

mbed TLS Test Server

\r\n" \ @@ -63,7 +70,8 @@ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_SSL_TLS_C) || \ !defined(POLARSSL_SSL_SRV_C) || !defined(POLARSSL_NET_C) || \ !defined(POLARSSL_RSA_C) || !defined(POLARSSL_CTR_DRBG_C) || \ - !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_TIMING_C) + !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_TIMING_C) ||\ + !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); diff --git a/programs/ssl/ssl_mail_client.c b/programs/ssl/ssl_mail_client.c index 769dd2670..a148171d9 100644 --- a/programs/ssl/ssl_mail_client.c +++ b/programs/ssl/ssl_mail_client.c @@ -29,13 +29,29 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) && \ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_CLI_C) && \ + defined(POLARSSL_NET_C) && defined(POLARSSL_RSA_C) && \ + defined(POLARSSL_CTR_DRBG_C) && defined(POLARSSL_X509_CRT_PARSE_C) && \ + defined(POLARSSL_FS_IO) +#include "polarssl/base64.h" +#include "polarssl/error.h" +#include "polarssl/net.h" +#include "polarssl/ssl.h" +#include "polarssl/entropy.h" +#include "polarssl/ctr_drbg.h" +#include "polarssl/certs.h" +#include "polarssl/x509.h" + #include +#include +#include +#endif #if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32) #include @@ -46,7 +62,6 @@ #endif #if defined(_WIN32) || defined(_WIN32_WCE) - #include #include @@ -59,33 +74,6 @@ #endif /* _MSC_VER */ #endif -#include "polarssl/base64.h" -#include "polarssl/error.h" -#include "polarssl/net.h" -#include "polarssl/ssl.h" -#include "polarssl/entropy.h" -#include "polarssl/ctr_drbg.h" -#include "polarssl/certs.h" -#include "polarssl/x509.h" - -#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ - !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ - !defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \ - !defined(POLARSSL_CTR_DRBG_C) || !defined(POLARSSL_X509_CRT_PARSE_C) -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); - - polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or " - "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or " - "POLARSSL_NET_C and/or POLARSSL_RSA_C and/or " - "POLARSSL_CTR_DRBG_C and/or POLARSSL_X509_CRT_PARSE_C " - "not defined.\n"); - return( 0 ); -} -#else - #define DFL_SERVER_NAME "localhost" #define DFL_SERVER_PORT 465 #define DFL_USER_NAME "user" @@ -103,6 +91,24 @@ int main( int argc, char *argv[] ) #define MODE_SSL_TLS 0 #define MODE_STARTTLS 0 +#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ + !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ + !defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \ + !defined(POLARSSL_CTR_DRBG_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\ + !defined(POLARSSL_FS_IO) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or " + "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or " + "POLARSSL_NET_C and/or POLARSSL_RSA_C and/or " + "POLARSSL_CTR_DRBG_C and/or POLARSSL_X509_CRT_PARSE_C " + "not defined.\n"); + return( 0 ); +} +#else /* * global options */ diff --git a/programs/ssl/ssl_pthread_server.c b/programs/ssl/ssl_pthread_server.c index 8c6717364..f95a6d88d 100644 --- a/programs/ssl/ssl_pthread_server.c +++ b/programs/ssl/ssl_pthread_server.c @@ -30,18 +30,21 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif #if defined(_WIN32) #include #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_CERTS_C) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SSL_TLS_C) &&\ + defined(POLARSSL_SSL_SRV_C) && defined(POLARSSL_NET_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_CTR_DRBG_C) &&\ + defined(POLARSSL_X509_CRT_PARSE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_THREADING_C) && defined(POLARSSL_THREADING_PTHREAD) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/certs.h" @@ -50,6 +53,11 @@ #include "polarssl/net.h" #include "polarssl/error.h" +#include +#include +#include +#endif + #if defined(POLARSSL_SSL_CACHE_C) #include "polarssl/ssl_cache.h" #endif @@ -58,11 +66,18 @@ #include "polarssl/memory_buffer_alloc.h" #endif +#define HTTP_RESPONSE \ + "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \ + "

mbed TLS Test Server

\r\n" \ + "

Successful connection using: %s

\r\n" + +#define DEBUG_LEVEL 0 + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_CERTS_C) || \ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_SSL_TLS_C) || \ !defined(POLARSSL_SSL_SRV_C) || !defined(POLARSSL_NET_C) || \ !defined(POLARSSL_RSA_C) || !defined(POLARSSL_CTR_DRBG_C) || \ - !defined(POLARSSL_X509_CRT_PARSE_C) || \ + !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \ !defined(POLARSSL_THREADING_C) || !defined(POLARSSL_THREADING_PTHREAD) int main( int argc, char *argv[] ) { @@ -78,14 +93,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define HTTP_RESPONSE \ - "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \ - "

mbed TLS Test Server

\r\n" \ - "

Successful connection using: %s

\r\n" - -#define DEBUG_LEVEL 0 - threading_mutex_t debug_mutex; static void my_mutexed_debug( void *ctx, int level, const char *str ) diff --git a/programs/ssl/ssl_server.c b/programs/ssl/ssl_server.c index fe8eca43e..0486517dd 100644 --- a/programs/ssl/ssl_server.c +++ b/programs/ssl/ssl_server.c @@ -29,18 +29,20 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif #if defined(_WIN32) #include #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_CERTS_C) && \ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SSL_TLS_C) && \ + defined(POLARSSL_SSL_SRV_C) && defined(POLARSSL_NET_C) && \ + defined(POLARSSL_RSA_C) && defined(POLARSSL_CTR_DRBG_C) && \ + defined(POLARSSL_X509_CRT_PARSE_C) && defined(POLARSSL_FS_IO) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/certs.h" @@ -50,15 +52,27 @@ #include "polarssl/error.h" #include "polarssl/debug.h" +#include +#include +#include +#endif + #if defined(POLARSSL_SSL_CACHE_C) #include "polarssl/ssl_cache.h" #endif +#define HTTP_RESPONSE \ + "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \ + "

mbed TLS Test Server

\r\n" \ + "

Successful connection using: %s

\r\n" + +#define DEBUG_LEVEL 0 + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_CERTS_C) || \ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_SSL_TLS_C) || \ !defined(POLARSSL_SSL_SRV_C) || !defined(POLARSSL_NET_C) || \ !defined(POLARSSL_RSA_C) || !defined(POLARSSL_CTR_DRBG_C) || \ - !defined(POLARSSL_X509_CRT_PARSE_C) + !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { ((void) argc); @@ -72,14 +86,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define HTTP_RESPONSE \ - "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \ - "

mbed TLS Test Server

\r\n" \ - "

Successful connection using: %s

\r\n" - -#define DEBUG_LEVEL 0 - static void my_debug( void *ctx, int level, const char *str ) { ((void) level); diff --git a/programs/ssl/ssl_server2.c b/programs/ssl/ssl_server2.c index a98eff8ab..e39a7fddc 100644 --- a/programs/ssl/ssl_server2.c +++ b/programs/ssl/ssl_server2.c @@ -29,27 +29,12 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf -#define polarssl_fprintf fprintf -#define polarssl_malloc malloc -#define polarssl_free free -#endif - -#if !defined(POLARSSL_ENTROPY_C) || \ - !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_SRV_C) || \ - !defined(POLARSSL_NET_C) || !defined(POLARSSL_CTR_DRBG_C) #include -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); - - polarssl_printf("POLARSSL_ENTROPY_C and/or " - "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_SRV_C and/or " - "POLARSSL_NET_C and/or POLARSSL_CTR_DRBG_C not defined.\n"); - return( 0 ); -} -#else +#define polarssl_free free +#define polarssl_malloc malloc +#define polarssl_fprintf fprintf +#define polarssl_printf printf +#endif #if defined(POLARSSL_SSL_SERVER_NAME_INDICATION) && defined(POLARSSL_FS_IO) #define POLARSSL_SNI @@ -59,14 +44,9 @@ int main( int argc, char *argv[] ) #include #endif -#include -#include -#include - -#if !defined(_WIN32) -#include -#endif - +#if defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_SRV_C) &&\ + defined(POLARSSL_NET_C) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/net.h" #include "polarssl/ssl.h" #include "polarssl/entropy.h" @@ -76,6 +56,15 @@ int main( int argc, char *argv[] ) #include "polarssl/error.h" #include "polarssl/debug.h" +#include +#include +#include +#endif + +#if !defined(_WIN32) +#include +#endif + #if defined(POLARSSL_SSL_CACHE_C) #include "polarssl/ssl_cache.h" #endif @@ -144,6 +133,21 @@ int main( int argc, char *argv[] ) */ #define IO_BUF_LEN 200 +#if !defined(POLARSSL_ENTROPY_C) ||\ + !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_SRV_C) || \ + !defined(POLARSSL_NET_C) || !defined(POLARSSL_CTR_DRBG_C) +#include +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf("POLARSSL_ENTROPY_C and/or " + "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_SRV_C and/or " + "POLARSSL_NET_C and/or POLARSSL_CTR_DRBG_C not defined.\n"); + return( 0 ); +} +#else /* * global options */ diff --git a/programs/test/benchmark.c b/programs/test/benchmark.c index cc83746d7..37840811e 100644 --- a/programs/test/benchmark.c +++ b/programs/test/benchmark.c @@ -29,13 +29,11 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_TIMING_C) #include "polarssl/timing.h" #include "polarssl/md4.h" @@ -60,6 +58,11 @@ #include "polarssl/ecdh.h" #include "polarssl/error.h" +#include +#include +#include +#endif + #if defined _MSC_VER && !defined snprintf #define snprintf _snprintf #endif @@ -78,7 +81,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - static int myrand( void *rng_state, unsigned char *output, size_t len ) { size_t use_len; diff --git a/programs/test/o_p_test.c b/programs/test/o_p_test.c index b904a9f8d..19fef9c91 100644 --- a/programs/test/o_p_test.c +++ b/programs/test/o_p_test.c @@ -29,19 +29,18 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_PK_PARSE_C) && defined(POLARSSL_FS_IO) #include + #ifndef OPENSSL_NO_ENGINE #include #endif + #include #include @@ -50,6 +49,13 @@ #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" +#include +#include +#include +#include +#include +#endif + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_PK_PARSE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) diff --git a/programs/test/selftest.c b/programs/test/selftest.c index d2f70d2d2..edecbb8f9 100644 --- a/programs/test/selftest.c +++ b/programs/test/selftest.c @@ -26,15 +26,6 @@ #include POLARSSL_CONFIG_FILE #endif -#if defined(POLARSSL_PLATFORM_C) -#include "polarssl/platform.h" -#else -#define polarssl_printf printf -#endif - -#include -#include - #include "polarssl/entropy.h" #include "polarssl/hmac_drbg.h" #include "polarssl/ctr_drbg.h" @@ -62,6 +53,16 @@ #include "polarssl/ecp.h" #include "polarssl/timing.h" +#include +#include + +#if defined(POLARSSL_PLATFORM_C) +#include "polarssl/platform.h" +#else +#include +#define polarssl_printf printf +#endif + #if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) #include "polarssl/memory_buffer_alloc.h" #endif diff --git a/programs/test/ssl_cert_test.c b/programs/test/ssl_cert_test.c index 037c47483..3e006d32d 100644 --- a/programs/test/ssl_cert_test.c +++ b/programs/test/ssl_cert_test.c @@ -29,11 +29,24 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include +#if defined(POLARSSL_RSA_C) && defined(POLARSSL_X509_CRT_PARSE_C) &&\ + defined(POLARSSL_FS_IO) && defined(POLARSSL_X509_CRL_PARSE_C) +#include "polarssl/certs.h" +#include "polarssl/x509_crt.h" + #include +#include +#endif + +#if defined _MSC_VER && !defined snprintf +#define snprintf _snprintf +#endif + +#define MAX_CLIENT_CERTS 8 #if !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) || \ !defined(POLARSSL_FS_IO) || !defined(POLARSSL_X509_CRL_PARSE_C) @@ -48,17 +61,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#include "polarssl/certs.h" -#include "polarssl/x509_crt.h" - -#if defined _MSC_VER && !defined snprintf -#define snprintf _snprintf -#endif - - -#define MAX_CLIENT_CERTS 8 - const char *client_certificates[MAX_CLIENT_CERTS] = { "client1.crt", diff --git a/programs/test/ssl_test.c b/programs/test/ssl_test.c index 63c32206c..c414ad032 100644 --- a/programs/test/ssl_test.c +++ b/programs/test/ssl_test.c @@ -29,44 +29,33 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf -#define polarssl_fprintf fprintf -#define polarssl_malloc malloc +#include #define polarssl_free free +#define polarssl_malloc malloc +#define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_SRV_C) &&\ + defined(POLARSSL_SSL_CLI_C) && defined(POLARSSL_NET_C) &&\ + defined(POLARSSL_RSA_C) && defined(POLARSSL_CTR_DRBG_C) &&\ + defined(POLARSSL_X509_CRT_PARSE_C) #include "polarssl/net.h" #include "polarssl/ssl.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/certs.h" + +#include +#include +#include +#endif + #if defined(POLARSSL_TIMING_C) #include "polarssl/timing.h" #endif -#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ - !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_SRV_C) || \ - !defined(POLARSSL_SSL_CLI_C) || !defined(POLARSSL_NET_C) || \ - !defined(POLARSSL_RSA_C) || !defined(POLARSSL_CTR_DRBG_C) || \ - !defined(POLARSSL_X509_CRT_PARSE_C) -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); - - polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or " - "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_SRV_C and/or " - "POLARSSL_SSL_CLI_C and/or POLARSSL_NET_C and/or " - "POLARSSL_RSA_C and/or POLARSSL_CTR_DRBG_C and/or " - "POLARSSL_X509_CRT_PARSE_C not defined.\n"); - return( 0 ); -} -#else - #define OPMODE_NONE 0 #define OPMODE_CLIENT 1 #define OPMODE_SERVER 2 @@ -92,6 +81,24 @@ int main( int argc, char *argv[] ) #define DFL_SESSION_LIFETIME 86400 #define DFL_FORCE_CIPHER 0 +#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ + !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_SRV_C) || \ + !defined(POLARSSL_SSL_CLI_C) || !defined(POLARSSL_NET_C) || \ + !defined(POLARSSL_RSA_C) || !defined(POLARSSL_CTR_DRBG_C) || \ + !defined(POLARSSL_X509_CRT_PARSE_C) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or " + "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_SRV_C and/or " + "POLARSSL_SSL_CLI_C and/or POLARSSL_NET_C and/or " + "POLARSSL_RSA_C and/or POLARSSL_CTR_DRBG_C and/or " + "POLARSSL_X509_CRT_PARSE_C not defined.\n"); + return( 0 ); +} +#else int server_fd = -1; /* diff --git a/programs/util/pem2der.c b/programs/util/pem2der.c index 74f7a3e81..c967e53da 100644 --- a/programs/util/pem2der.c +++ b/programs/util/pem2der.c @@ -29,21 +29,31 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf -#define polarssl_malloc malloc +#include #define polarssl_free free +#define polarssl_malloc malloc +#define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BASE64_C) && defined(POLARSSL_FS_IO) #include "polarssl/error.h" #include "polarssl/base64.h" +#include +#include +#include +#endif + #define DFL_FILENAME "file.pem" #define DFL_OUTPUT_FILENAME "file.der" +#define USAGE \ + "\n usage: pem2der param=<>...\n" \ + "\n acceptable parameters:\n" \ + " filename=%%s default: file.pem\n" \ + " output_file=%%s default: file.der\n" \ + "\n" + #if !defined(POLARSSL_BASE64_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) { @@ -170,13 +180,6 @@ static int write_file( const char *path, unsigned char *buf, size_t n ) return( 0 ); } -#define USAGE \ - "\n usage: pem2der param=<>...\n" \ - "\n acceptable parameters:\n" \ - " filename=%%s default: file.pem\n" \ - " output_file=%%s default: file.der\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/util/strerror.c b/programs/util/strerror.c index c5598fccf..f4da587e4 100644 --- a/programs/util/strerror.c +++ b/programs/util/strerror.c @@ -29,14 +29,17 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif +#if defined(POLARSSL_ERROR_C) || defined(POLARSSL_ERROR_STRERROR_DUMMY) +#include "polarssl/error.h" + +#include #include #include -#include - -#include "polarssl/error.h" +#endif #define USAGE \ "\n usage: strerror \n" \ diff --git a/programs/x509/cert_app.c b/programs/x509/cert_app.c index a945440f9..5d9348d3f 100644 --- a/programs/x509/cert_app.c +++ b/programs/x509/cert_app.c @@ -29,20 +29,41 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else -#define polarssl_printf printf +#include #define polarssl_fprintf fprintf +#define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_ENTROPY_C) &&\ + defined(POLARSSL_SSL_TLS_C) && defined(POLARSSL_SSL_CLI_C) &&\ + defined(POLARSSL_NET_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_X509_CRT_PARSE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_CTR_DRBG_C) #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/net.h" #include "polarssl/ssl.h" #include "polarssl/x509.h" +#include +#include +#include +#endif + +#define MODE_NONE 0 +#define MODE_FILE 1 +#define MODE_SSL 2 + +#define DFL_MODE MODE_NONE +#define DFL_FILENAME "cert.crt" +#define DFL_CA_FILE "" +#define DFL_CRL_FILE "" +#define DFL_CA_PATH "" +#define DFL_SERVER_NAME "localhost" +#define DFL_SERVER_PORT 4433 +#define DFL_DEBUG_LEVEL 0 +#define DFL_PERMISSIVE 0 + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \ !defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \ @@ -61,21 +82,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define MODE_NONE 0 -#define MODE_FILE 1 -#define MODE_SSL 2 - -#define DFL_MODE MODE_NONE -#define DFL_FILENAME "cert.crt" -#define DFL_CA_FILE "" -#define DFL_CRL_FILE "" -#define DFL_CA_PATH "" -#define DFL_SERVER_NAME "localhost" -#define DFL_SERVER_PORT 4433 -#define DFL_DEBUG_LEVEL 0 -#define DFL_PERMISSIVE 0 - /* * global options */ diff --git a/programs/x509/cert_req.c b/programs/x509/cert_req.c index f93609746..e978201a9 100644 --- a/programs/x509/cert_req.c +++ b/programs/x509/cert_req.c @@ -29,18 +29,57 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_X509_CSR_WRITE_C) && defined(POLARSSL_FS_IO) && \ + defined(POLARSSL_PK_PARSE_C) && \ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_CTR_DRBG_C) #include "polarssl/x509_csr.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/error.h" +#include +#include +#include +#endif + +#define DFL_FILENAME "keyfile.key" +#define DFL_DEBUG_LEVEL 0 +#define DFL_OUTPUT_FILENAME "cert.req" +#define DFL_SUBJECT_NAME "CN=Cert,O=mbed TLS,C=UK" +#define DFL_KEY_USAGE 0 +#define DFL_NS_CERT_TYPE 0 + +#define USAGE \ + "\n usage: cert_req param=<>...\n" \ + "\n acceptable parameters:\n" \ + " filename=%%s default: keyfile.key\n" \ + " debug_level=%%d default: 0 (disabled)\n" \ + " output_file=%%s default: cert.req\n" \ + " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ + " key_usage=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " digital_signature\n" \ + " non_repudiation\n" \ + " key_encipherment\n" \ + " data_encipherment\n" \ + " key_agreement\n" \ + " key_certificate_sign\n" \ + " crl_sign\n" \ + " ns_cert_type=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " ssl_client\n" \ + " ssl_server\n" \ + " email\n" \ + " object_signing\n" \ + " ssl_ca\n" \ + " email_ca\n" \ + " object_signing_ca\n" \ + "\n" + #if !defined(POLARSSL_X509_CSR_WRITE_C) || !defined(POLARSSL_FS_IO) || \ !defined(POLARSSL_PK_PARSE_C) || \ !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) @@ -56,14 +95,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define DFL_FILENAME "keyfile.key" -#define DFL_DEBUG_LEVEL 0 -#define DFL_OUTPUT_FILENAME "cert.req" -#define DFL_SUBJECT_NAME "CN=Cert,O=mbed TLS,C=UK" -#define DFL_KEY_USAGE 0 -#define DFL_NS_CERT_TYPE 0 - /* * global options */ @@ -106,33 +137,6 @@ int write_certificate_request( x509write_csr *req, const char *output_file, return( 0 ); } -#define USAGE \ - "\n usage: cert_req param=<>...\n" \ - "\n acceptable parameters:\n" \ - " filename=%%s default: keyfile.key\n" \ - " debug_level=%%d default: 0 (disabled)\n" \ - " output_file=%%s default: cert.req\n" \ - " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ - " key_usage=%%s default: (empty)\n" \ - " Comma-separated-list of values:\n" \ - " digital_signature\n" \ - " non_repudiation\n" \ - " key_encipherment\n" \ - " data_encipherment\n" \ - " key_agreement\n" \ - " key_certificate_sign\n" \ - " crl_sign\n" \ - " ns_cert_type=%%s default: (empty)\n" \ - " Comma-separated-list of values:\n" \ - " ssl_client\n" \ - " ssl_server\n" \ - " email\n" \ - " object_signing\n" \ - " ssl_ca\n" \ - " email_ca\n" \ - " object_signing_ca\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/x509/cert_write.c b/programs/x509/cert_write.c index 7d6885877..aa1cf54e7 100644 --- a/programs/x509/cert_write.c +++ b/programs/x509/cert_write.c @@ -29,36 +29,34 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - -#if !defined(POLARSSL_X509_CRT_WRITE_C) || \ - !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \ - !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) || \ - !defined(POLARSSL_ERROR_C) -int main( int argc, char *argv[] ) -{ - ((void) argc); - ((void) argv); - - polarssl_printf( "POLARSSL_X509_CRT_WRITE_C and/or POLARSSL_X509_CRT_PARSE_C and/or " - "POLARSSL_FS_IO and/or " - "POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C and/or " - "POLARSSL_ERROR_C not defined.\n"); - return( 0 ); -} -#else - +#if defined(POLARSSL_X509_CRT_WRITE_C) &&\ + defined(POLARSSL_X509_CRT_PARSE_C) && defined(POLARSSL_FS_IO) &&\ + defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_CTR_DRBG_C) &&\ + defined(POLARSSL_ERROR_C) #include "polarssl/x509_crt.h" #include "polarssl/x509_csr.h" #include "polarssl/entropy.h" #include "polarssl/ctr_drbg.h" #include "polarssl/error.h" +#include +#include +#include +#endif + +#if defined(POLARSSL_X509_CSR_PARSE_C) +#define USAGE_CSR \ + " request_file=%%s default: (empty)\n" \ + " If request_file is specified, subject_key,\n" \ + " subject_pwd and subject_name are ignored!\n" +#else +#define USAGE_CSR "" +#endif /* POLARSSL_X509_CSR_PARSE_C */ + #define DFL_ISSUER_CRT "" #define DFL_REQUEST_FILE "" #define DFL_SUBJECT_KEY "subject.key" @@ -77,6 +75,67 @@ int main( int argc, char *argv[] ) #define DFL_KEY_USAGE 0 #define DFL_NS_CERT_TYPE 0 +#define USAGE \ + "\n usage: cert_write param=<>...\n" \ + "\n acceptable parameters:\n" \ + USAGE_CSR \ + " subject_key=%%s default: subject.key\n" \ + " subject_pwd=%%s default: (empty)\n" \ + " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ + "\n" \ + " issuer_crt=%%s default: (empty)\n" \ + " If issuer_crt is specified, issuer_name is\n" \ + " ignored!\n" \ + " issuer_name=%%s default: CN=CA,O=mbed TLS,C=UK\n" \ + "\n" \ + " selfsign=%%d default: 0 (false)\n" \ + " If selfsign is enabled, issuer_name and\n" \ + " issuer_key are required (issuer_crt and\n" \ + " subject_* are ignored\n" \ + " issuer_key=%%s default: ca.key\n" \ + " issuer_pwd=%%s default: (empty)\n" \ + " output_file=%%s default: cert.crt\n" \ + " serial=%%s default: 1\n" \ + " not_before=%%s default: 20010101000000\n"\ + " not_after=%%s default: 20301231235959\n"\ + " is_ca=%%d default: 0 (disabled)\n" \ + " max_pathlen=%%d default: -1 (none)\n" \ + " key_usage=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " digital_signature\n" \ + " non_repudiation\n" \ + " key_encipherment\n" \ + " data_encipherment\n" \ + " key_agreement\n" \ + " key_certificate_sign\n" \ + " crl_sign\n" \ + " ns_cert_type=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " ssl_client\n" \ + " ssl_server\n" \ + " email\n" \ + " object_signing\n" \ + " ssl_ca\n" \ + " email_ca\n" \ + " object_signing_ca\n" \ + "\n" + +#if !defined(POLARSSL_X509_CRT_WRITE_C) || \ + !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \ + !defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) || \ + !defined(POLARSSL_ERROR_C) +int main( int argc, char *argv[] ) +{ + ((void) argc); + ((void) argv); + + polarssl_printf( "POLARSSL_X509_CRT_WRITE_C and/or POLARSSL_X509_CRT_PARSE_C and/or " + "POLARSSL_FS_IO and/or " + "POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C and/or " + "POLARSSL_ERROR_C not defined.\n"); + return( 0 ); +} +#else /* * global options */ @@ -130,60 +189,6 @@ int write_certificate( x509write_cert *crt, const char *output_file, return( 0 ); } -#if defined(POLARSSL_X509_CSR_PARSE_C) -#define USAGE_CSR \ - " request_file=%%s default: (empty)\n" \ - " If request_file is specified, subject_key,\n" \ - " subject_pwd and subject_name are ignored!\n" -#else -#define USAGE_CSR "" -#endif /* POLARSSL_X509_CSR_PARSE_C */ - -#define USAGE \ - "\n usage: cert_write param=<>...\n" \ - "\n acceptable parameters:\n" \ - USAGE_CSR \ - " subject_key=%%s default: subject.key\n" \ - " subject_pwd=%%s default: (empty)\n" \ - " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ - "\n" \ - " issuer_crt=%%s default: (empty)\n" \ - " If issuer_crt is specified, issuer_name is\n" \ - " ignored!\n" \ - " issuer_name=%%s default: CN=CA,O=mbed TLS,C=UK\n" \ - "\n" \ - " selfsign=%%d default: 0 (false)\n" \ - " If selfsign is enabled, issuer_name and\n" \ - " issuer_key are required (issuer_crt and\n" \ - " subject_* are ignored\n" \ - " issuer_key=%%s default: ca.key\n" \ - " issuer_pwd=%%s default: (empty)\n" \ - " output_file=%%s default: cert.crt\n" \ - " serial=%%s default: 1\n" \ - " not_before=%%s default: 20010101000000\n"\ - " not_after=%%s default: 20301231235959\n"\ - " is_ca=%%d default: 0 (disabled)\n" \ - " max_pathlen=%%d default: -1 (none)\n" \ - " key_usage=%%s default: (empty)\n" \ - " Comma-separated-list of values:\n" \ - " digital_signature\n" \ - " non_repudiation\n" \ - " key_encipherment\n" \ - " data_encipherment\n" \ - " key_agreement\n" \ - " key_certificate_sign\n" \ - " crl_sign\n" \ - " ns_cert_type=%%s default: (empty)\n" \ - " Comma-separated-list of values:\n" \ - " ssl_client\n" \ - " ssl_server\n" \ - " email\n" \ - " object_signing\n" \ - " ssl_ca\n" \ - " email_ca\n" \ - " object_signing_ca\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/x509/crl_app.c b/programs/x509/crl_app.c index 437022797..e634cca3e 100644 --- a/programs/x509/crl_app.c +++ b/programs/x509/crl_app.c @@ -29,15 +29,28 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_X509_CRL_PARSE_C) && defined(POLARSSL_FS_IO) #include "polarssl/x509_crl.h" +#include +#include +#include +#endif + +#define DFL_FILENAME "crl.pem" +#define DFL_DEBUG_LEVEL 0 + +#define USAGE \ + "\n usage: crl_app param=<>...\n" \ + "\n acceptable parameters:\n" \ + " filename=%%s default: crl.pem\n" \ + "\n" + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_X509_CRL_PARSE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) @@ -50,10 +63,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define DFL_FILENAME "crl.pem" -#define DFL_DEBUG_LEVEL 0 - /* * global options */ @@ -62,12 +71,6 @@ struct options const char *filename; /* filename of the certificate file */ } opt; -#define USAGE \ - "\n usage: crl_app param=<>...\n" \ - "\n acceptable parameters:\n" \ - " filename=%%s default: crl.pem\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0; diff --git a/programs/x509/req_app.c b/programs/x509/req_app.c index a4be7e69a..3aa5f41ae 100644 --- a/programs/x509/req_app.c +++ b/programs/x509/req_app.c @@ -29,15 +29,28 @@ #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else +#include #define polarssl_printf printf #endif -#include -#include -#include - +#if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_RSA_C) &&\ + defined(POLARSSL_X509_CSR_PARSE_C) && defined(POLARSSL_FS_IO) #include "polarssl/x509_csr.h" +#include +#include +#include +#endif + +#define DFL_FILENAME "cert.req" +#define DFL_DEBUG_LEVEL 0 + +#define USAGE \ + "\n usage: req_app param=<>...\n" \ + "\n acceptable parameters:\n" \ + " filename=%%s default: cert.req\n" \ + "\n" + #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ !defined(POLARSSL_X509_CSR_PARSE_C) || !defined(POLARSSL_FS_IO) int main( int argc, char *argv[] ) @@ -50,10 +63,6 @@ int main( int argc, char *argv[] ) return( 0 ); } #else - -#define DFL_FILENAME "cert.req" -#define DFL_DEBUG_LEVEL 0 - /* * global options */ @@ -62,12 +71,6 @@ struct options const char *filename; /* filename of the certificate request */ } opt; -#define USAGE \ - "\n usage: req_app param=<>...\n" \ - "\n acceptable parameters:\n" \ - " filename=%%s default: cert.req\n" \ - "\n" - int main( int argc, char *argv[] ) { int ret = 0;