Rm _CRT_SECURE_NO_DEPRECATE for programs

(Already in config.h.)
diff --git a/programs/aes/crypt_and_hash.c b/programs/aes/crypt_and_hash.c
index 6caaad8..5aa0bfe 100644
--- a/programs/aes/crypt_and_hash.c
+++ b/programs/aes/crypt_and_hash.c
@@ -24,9 +24,7 @@
  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef _CRT_SECURE_NO_DEPRECATE
-#define _CRT_SECURE_NO_DEPRECATE 1
-#endif
+#include "polarssl/config.h"
 
 #if defined(_WIN32)
 #include <windows.h>
@@ -43,8 +41,6 @@
 #include <stdio.h>
 #include <time.h>
 
-#include "polarssl/config.h"
-
 #include "polarssl/cipher.h"
 #include "polarssl/md.h"