test_mod_mul is useful, let's run it more often.
[openssl.git] / crypto / rc5 / rc5ofb64.c
index b52e14513f9ca6c7b8a0d7c0f1c139b0fc07f74b..d412215f3c3359cc94785a1792a30a570b24d77f 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include "rc5.h"
+#include <openssl/rc5.h>
 #include "rc5_locl.h"
 
 /* The input and output encrypted as though 64bit ofb mode is being
  * 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;