EVP constification.
[openssl.git] / crypto / rc2 / rc2ofb64.c
index 42cdd40cdd98298d53eb24fbe9f343f2fd54767d..9e297867ed56966ff4a8087affeab42058ef2dfc 100644 (file)
@@ -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 RC2_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
-            RC2_KEY *schedule, unsigned char *ivec, int *num)
+void RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out,
+                      long length, RC2_KEY *schedule, unsigned char *ivec,
+                      int *num)
        {
        register unsigned long v0,v1,t;
        register int n= *num;