summaryrefslogtreecommitdiffstats
path: root/crypto/des/rpc_enc.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-16 12:26:16 +0000
committerBodo Möller <bodo@openssl.org>1999-05-16 12:26:16 +0000
commitedf0bfb52b46bb9c8bf44e9c486be60c7087618c (patch)
tree6ad2135e6ba0e639b8938729fd55696605913011 /crypto/des/rpc_enc.c
parente186bf96b433b85fc3a87b3ca2fd6c1929212d72 (diff)
Change type of various DES function arguments from des_cblock
(meaning pointer to char) to des_cblock * (meaning pointer to array with 8 char elements), which allows the compiler to do more typechecking. (The changed argument types were of type des_cblock * back in SSLeay, and a lot of ugly casts were used then to turn them into pointers to elements; but it can be done without those casts.) Introduce new type const_des_cblock -- before, the pointers rather than the elements pointed to were declared const, and for some reason gcc did not complain about this (but some other compilers did).
Diffstat (limited to 'crypto/des/rpc_enc.c')
-rw-r--r--crypto/des/rpc_enc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/crypto/des/rpc_enc.c b/crypto/des/rpc_enc.c
index e34c9af503..c96c204147 100644
--- a/crypto/des/rpc_enc.c
+++ b/crypto/des/rpc_enc.c
@@ -66,16 +66,17 @@ int _des_crypt(char *buf, int len, struct desparams *desp)
des_key_schedule ks;
int enc;
- des_set_key(desp->des_key,ks);
+ des_set_key(&desp->des_key,ks);
enc=(desp->des_dir == ENCRYPT)?DES_ENCRYPT:DES_DECRYPT;
if (desp->des_mode == CBC)
- des_ecb_encrypt(desp->UDES.UDES_buf,desp->UDES.UDES_buf,ks,
+ des_ecb_encrypt((const_des_cblock *)desp->UDES.UDES_buf,
+ (des_cblock *)desp->UDES.UDES_buf,ks,
enc);
else
{
des_ncbc_encrypt(desp->UDES.UDES_buf,desp->UDES.UDES_buf,
- len,ks,desp->des_ivec,enc);
+ len,ks,&desp->des_ivec,enc);
#ifdef undef
/* len will always be %8 if called from common_crypt
* in secure_rpc.