summaryrefslogtreecommitdiffstats
path: root/crypto/des/des_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/des/des_local.h')
-rw-r--r--crypto/des/des_local.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/crypto/des/des_local.h b/crypto/des/des_local.h
index 09099a97dc..5abf62d6f7 100644
--- a/crypto/des/des_local.h
+++ b/crypto/des/des_local.h
@@ -59,21 +59,6 @@
*((c)++)=(unsigned char)(((l)>>16L)&0xff), \
*((c)++)=(unsigned char)(((l)>>24L)&0xff))
-/*
- * replacements for htonl and ntohl since I have no idea what to do when
- * faced with machines with 8 byte longs.
- */
-
-# define n2l(c,l) (l =((DES_LONG)(*((c)++)))<<24L, \
- l|=((DES_LONG)(*((c)++)))<<16L, \
- l|=((DES_LONG)(*((c)++)))<< 8L, \
- l|=((DES_LONG)(*((c)++))))
-
-# define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \
- *((c)++)=(unsigned char)(((l)>>16L)&0xff), \
- *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \
- *((c)++)=(unsigned char)(((l) )&0xff))
-
/* NOTE - c is not incremented as per l2c */
# define l2cn(l1,l2,c,n) { \
c+=n; \