aboutsummaryrefslogtreecommitdiffstats
path: root/md5.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-06-29 22:09:03 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-06-29 22:09:03 +0000
commit913935522163f44546d35f7a647457cb9499198b (patch)
tree0673a815a4c2caa4ba24ec08e81b8a9ba12ef905 /md5.c
parent0721bdf320fce000fb0b44cb27df7f7337b251e4 (diff)
Version 0.1.12 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@475 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'md5.c')
-rwxr-xr-xmd5.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/md5.c b/md5.c
index 74fe9014a..543e8c581 100755
--- a/md5.c
+++ b/md5.c
@@ -1,23 +1,9 @@
/* MD5 checksum routines used for authentication. Not covered by GPL, but
in the public domain as per the copyright below */
-#ifdef FREEBSD
-# include <machine/endian.h>
-#elif defined(LINUX)
-# include <endian.h>
-#elif defined(SOLARIS)
-/* each solaris is different -- this won't work on 2.6 or 2.7 */
-# include <sys/isa_defs.h>
-#endif
-#if defined(__BYTE_ORDER) || defined(BYTE_ORDER)
# if __BYTE_ORDER == __BIG_ENDIAN || BYTE_ORDER == BIG_ENDIAN
# define HIGHFIRST 1
# endif
-#else /* ! *BYTE_ORDER */
-# if defined(WORDS_BIGENDIAN)
-# define HIGHFIRST 1
-# endif
-#endif
/*
* This code implements the MD5 message-digest algorithm.