diff options
author | Ben Laurie <ben@openssl.org> | 2000-06-03 16:13:58 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2000-06-03 16:13:58 +0200 |
commit | 1921eaad645c9a9f62c1ed79b7ae87c417aa8a3c (patch) | |
tree | 3cfb98b7de9296d88960349a0cfee184e72670b6 /crypto/rc5/rc5ofb64.c | |
parent | There have been a number of complaints from a number of sources that names (diff) | |
download | openssl-1921eaad645c9a9f62c1ed79b7ae87c417aa8a3c.tar.xz openssl-1921eaad645c9a9f62c1ed79b7ae87c417aa8a3c.zip |
EVP constification.
Diffstat (limited to 'crypto/rc5/rc5ofb64.c')
-rw-r--r-- | crypto/rc5/rc5ofb64.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/rc5/rc5ofb64.c b/crypto/rc5/rc5ofb64.c index fd2ecddf6c..d412215f3c 100644 --- a/crypto/rc5/rc5ofb64.c +++ b/crypto/rc5/rc5ofb64.c @@ -63,8 +63,9 @@ * used. The extra state information to record how much of the * 64bit block we have used is contained in *num; */ -void RC5_32_ofb64_encrypt(unsigned char *in, unsigned char *out, long length, - RC5_32_KEY *schedule, unsigned char *ivec, int *num) +void RC5_32_ofb64_encrypt(const unsigned char *in, unsigned char *out, + long length, RC5_32_KEY *schedule, + unsigned char *ivec, int *num) { register unsigned long v0,v1,t; register int n= *num; |