hush: move msh/lash config into hush.c, no code changes
[oweals/busybox.git] / libbb / pw_encrypt_md5.c
index b02cbecfa003f2babd9b4c01a654f2a4a5131027..58964b56769c7b62bd0135ecf2102e29c41c93c7 100644 (file)
  * by Erik Andersen to remove reentrance stuff...
  */
 
-#define MD5_MAGIC_STR "$1$"
-#define MD5_MAGIC_LEN (sizeof(MD5_MAGIC_STR) - 1)
-static const unsigned char __md5__magic[] = MD5_MAGIC_STR;
-
 /*
  * UNIX password
  *
@@ -163,5 +159,3 @@ md5_crypt(char result[MD5_OUT_BUFSIZE], const unsigned char *pw, const unsigned
 
        return result;
 }
-#undef MD5_MAGIC_STR
-#undef MD5_MAGIC_LEN