summaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorzhangzhilei <zhangzhilei@360.cn>2023-01-14 14:23:48 +0800
committerTomas Mraz <tomas@openssl.org>2023-01-17 12:41:11 +0100
commit2fb5fa468613a3472d148deaf0991fa7e78c83a6 (patch)
tree780ff490411a42e4529e30dba90975577aa148e9 /crypto/des
parent3b1c0c8f3cd66e80f81a9b7c9810bdada39363f2 (diff)
remove unused macro in cast_local.h and des_local.h
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20048)
Diffstat (limited to 'crypto/des')
-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; \