X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Frc5%2Frc5cfb64.c;h=3a8b60bc7a875eddc847e1add74deca04be501f3;hb=933f32cc4d183b9f154316a55d77a95efb571282;hp=dbc7ae105ba0744a30d4a8d4d5bc2cea470afc22;hpb=6b691a5c85ddc4e407e32781841fee5c029506cd;p=openssl.git diff --git a/crypto/rc5/rc5cfb64.c b/crypto/rc5/rc5cfb64.c index dbc7ae105b..3a8b60bc7a 100644 --- a/crypto/rc5/rc5cfb64.c +++ b/crypto/rc5/rc5cfb64.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "rc5.h" +#include #include "rc5_locl.h" /* The input and output encrypted as though 64bit cfb mode is being @@ -64,8 +64,9 @@ * 64bit block we have used is contained in *num; */ -void RC5_32_cfb64_encrypt(unsigned char *in, unsigned char *out, long length, - RC5_32_KEY *schedule, unsigned char *ivec, int *num, int encrypt) +void RC5_32_cfb64_encrypt(const unsigned char *in, unsigned char *out, + long length, RC5_32_KEY *schedule, + unsigned char *ivec, int *num, int encrypt) { register unsigned long v0,v1,t; register int n= *num;