- Renamed include directory to polarssl
diff --git a/programs/test/selftest.c b/programs/test/selftest.c
new file mode 100644
index 0000000..6fc0e1f
--- /dev/null
+++ b/programs/test/selftest.c
@@ -0,0 +1,131 @@
+/*
+ * Self-test demonstration program
+ *
+ * Copyright (C) 2006-2007 Christophe Devine
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef _CRT_SECURE_NO_DEPRECATE
+#define _CRT_SECURE_NO_DEPRECATE 1
+#endif
+
+#include <string.h>
+#include <stdio.h>
+
+#include "xyssl/config.h"
+
+#include "xyssl/md2.h"
+#include "xyssl/md4.h"
+#include "xyssl/md5.h"
+#include "xyssl/sha1.h"
+#include "xyssl/sha2.h"
+#include "xyssl/sha4.h"
+#include "xyssl/arc4.h"
+#include "xyssl/des.h"
+#include "xyssl/aes.h"
+#include "xyssl/base64.h"
+#include "xyssl/bignum.h"
+#include "xyssl/rsa.h"
+#include "xyssl/x509.h"
+
+int main( int argc, char *argv[] )
+{
+ int ret, v;
+
+ if( argc == 2 && strcmp( argv[1], "-quiet" ) == 0 )
+ v = 0;
+ else
+ {
+ v = 1;
+ printf( "\n" );
+ }
+
+#if defined(XYSSL_MD2_C)
+ if( ( ret = md2_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_MD4_C)
+ if( ( ret = md4_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_MD5_C)
+ if( ( ret = md5_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_SHA1_C)
+ if( ( ret = sha1_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_SHA2_C)
+ if( ( ret = sha2_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_SHA4_C)
+ if( ( ret = sha4_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_ARC4_C)
+ if( ( ret = arc4_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_DES_C)
+ if( ( ret = des_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_AES_C)
+ if( ( ret = aes_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_BASE64_C)
+ if( ( ret = base64_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_BIGNUM_C)
+ if( ( ret = mpi_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_RSA_C)
+ if( ( ret = rsa_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+#if defined(XYSSL_X509_C)
+ if( ( ret = x509_self_test( v ) ) != 0 )
+ return( ret );
+#endif
+
+ if( v != 0 )
+ {
+ printf( " [ All tests passed ]\n\n" );
+#ifdef WIN32
+ printf( " Press Enter to exit this program.\n" );
+ fflush( stdout ); getchar();
+#endif
+ }
+
+ return( ret );
+}