aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-03-10 17:43:05 +0000
committerUlf Möller <ulf@openssl.org>2000-03-10 17:43:05 +0000
commit9e03333fd57e303ee6a4ab15fd131a4d51360c0a (patch)
tree3483d6d466a28d3e83ad4549ba0bd847bcaf5b2a /crypto/des
parent9f06706bf78991b760903a640286156ed1091ddb (diff)
downloadopenssl-9e03333fd57e303ee6a4ab15fd131a4d51360c0a.tar.gz
Use L for all constants.
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/set_key.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/des/set_key.c b/crypto/des/set_key.c
index bbdc71ba6b..213b59f783 100644
--- a/crypto/des/set_key.c
+++ b/crypto/des/set_key.c
@@ -223,9 +223,9 @@ void des_set_key_unchecked(const_des_cblock *key, des_key_schedule schedule)
/* could be a few less shifts but I am to lazy at this
* point in time to investigate */
s= des_skb[0][ (c )&0x3f ]|
- des_skb[1][((c>> 6)&0x03)|((c>> 7L)&0x3c)]|
- des_skb[2][((c>>13)&0x0f)|((c>>14L)&0x30)]|
- des_skb[3][((c>>20)&0x01)|((c>>21L)&0x06) |
+ des_skb[1][((c>> 6L)&0x03)|((c>> 7L)&0x3c)]|
+ des_skb[2][((c>>13L)&0x0f)|((c>>14L)&0x30)]|
+ des_skb[3][((c>>20L)&0x01)|((c>>21L)&0x06) |
((c>>22L)&0x38)];
t= des_skb[4][ (d )&0x3f ]|
des_skb[5][((d>> 7L)&0x03)|((d>> 8L)&0x3c)]|