commit | 1921eaad645c9a9f62c1ed79b7ae87c417aa8a3c | [log] [tgz] |
---|---|---|
author | Ben Laurie <ben@openssl.org> | Sat Jun 03 14:13:58 2000 +0000 |
committer | Ben Laurie <ben@openssl.org> | Sat Jun 03 14:13:58 2000 +0000 |
tree | 3cfb98b7de9296d88960349a0cfee184e72670b6 | |
parent | 26a3a48d65c7464b400ec1de439994d7f0d25fed [diff] [blame] |
EVP constification.
diff --git a/crypto/rc2/rc2_ecb.c b/crypto/rc2/rc2_ecb.c index 7d77b91..d3e8c27 100644 --- a/crypto/rc2/rc2_ecb.c +++ b/crypto/rc2/rc2_ecb.c
@@ -70,8 +70,8 @@ * Date: 11 Feb 1996 06:45:03 GMT */ -void RC2_ecb_encrypt(unsigned char *in, unsigned char *out, RC2_KEY *ks, - int encrypt) +void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *ks, + int encrypt) { unsigned long l,d[2];