summaryrefslogtreecommitdiffstats
path: root/crypto/cast/c_ecb.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-13 17:51:35 +0000
committerBodo Möller <bodo@openssl.org>1999-05-13 17:51:35 +0000
commit608217d8d0b0fd07e28e7a1e687ec19f550edb7f (patch)
tree77749a0fa76773f7014d144425f1d0a8c6d8f1ea /crypto/cast/c_ecb.c
parent2adca9cdc6de004e5cb27437cb80841d1298e02d (diff)
Don't use reserved name "_encrypt" for parameters;
instead I've picked "enc", because that's what's in the prototypes. ("_encrypt" is reserved only as an external name, but still using it in an application doesn't look like good style to me -- and it certainly isn't if the point is just avoiding shadowing, which is apparently why the previous name "encrypt" was changed.)
Diffstat (limited to 'crypto/cast/c_ecb.c')
-rw-r--r--crypto/cast/c_ecb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cast/c_ecb.c b/crypto/cast/c_ecb.c
index e237ebcac4..33182f2b71 100644
--- a/crypto/cast/c_ecb.c
+++ b/crypto/cast/c_ecb.c
@@ -63,13 +63,13 @@
char *CAST_version="CAST" OPENSSL_VERSION_PTEXT;
void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
- CAST_KEY *ks, int _encrypt)
+ CAST_KEY *ks, int enc)
{
CAST_LONG l,d[2];
n2l(in,l); d[0]=l;
n2l(in,l); d[1]=l;
- if (_encrypt)
+ if (enc)
CAST_encrypt(d,ks);
else
CAST_decrypt(d,ks);