From 15566e43963bf569dd8142ee8ca354e8019d8f81 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Sun, 24 Apr 2011 21:19:15 +0000
Subject: [PATCH] - Reordered options alphabetically
---
include/polarssl/config.h | 40 +++++++++++++++++++--------------------
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/include/polarssl/config.h b/include/polarssl/config.h
index 79071a393f..3f8d52fccf 100644
--- a/include/polarssl/config.h
+++ b/include/polarssl/config.h
@@ -105,6 +105,16 @@
* \{
*/
+/**
+ * \def POLARSSL_AES_ROM_TABLES
+ *
+ * Store the AES tables in ROM.
+ *
+ * Uncomment this macro to store the AES tables in ROM.
+ *
+#define POLARSSL_AES_ROM_TABLES
+ */
+
/**
* \def POLARSSL_CIPHER_MODE_CFB
*
@@ -127,11 +137,11 @@
#define POLARSSL_DEBUG_MSG
/**
- * \def POLARSSL_SELF_TEST
+ * \def POLARSSL_GENPRIME
*
- * Enable the checkup functions (*_self_test).
+ * Enable the RSA prime-number generation code.
*/
-#define POLARSSL_SELF_TEST
+#define POLARSSL_GENPRIME
/**
* \def POLARSSL_PKCS1_V21
@@ -141,23 +151,6 @@
*/
#define POLARSSL_PKCS1_V21
-/**
- * \def POLARSSL_GENPRIME
- *
- * Enable the RSA prime-number generation code.
- */
-#define POLARSSL_GENPRIME
-
-/**
- * \def POLARSSL_AES_ROM_TABLES
- *
- * Store the AES tables in ROM.
- *
- * Uncomment this macro to store the AES tables in ROM.
- *
-#define POLARSSL_AES_ROM_TABLES
- */
-
/**
* \def POLARSSL_RSA_NO_CRT
*
@@ -167,6 +160,13 @@
*
#define POLARSSL_RSA_NO_CRT
*/
+
+/**
+ * \def POLARSSL_SELF_TEST
+ *
+ * Enable the checkup functions (*_self_test).
+ */
+#define POLARSSL_SELF_TEST
/* \} name */
/**