X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fbf%2Fbf_ofb64.c;h=f2a9ff6e417dc7ad7164bdb15d55f4e6faaea5b8;hb=f01cfca6a4440fd8e79016728a4b71e8e0a90cb1;hp=8ceb8d9bdaa0f6d0c135c5f28a857555217dd9ea;hpb=ec577822f95a8bca0023c5c77cef1a4916822d4a;p=oweals%2Fopenssl.git diff --git a/crypto/bf/bf_ofb64.c b/crypto/bf/bf_ofb64.c index 8ceb8d9bda..f2a9ff6e41 100644 --- a/crypto/bf/bf_ofb64.c +++ b/crypto/bf/bf_ofb64.c @@ -63,8 +63,8 @@ * used. The extra state information to record how much of the * 64bit block we have used is contained in *num; */ -void BF_ofb64_encrypt(unsigned char *in, unsigned char *out, long length, - BF_KEY *schedule, unsigned char *ivec, int *num) +void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, + const BF_KEY *schedule, unsigned char *ivec, int *num) { register BF_LONG v0,v1,t; register int n= *num;