EVP constification.
[openssl.git] / crypto / rc2 / rc2cfb64.c
index 5e3fa07d90724ab2e8b7403f84ea90b806d0b1db..b3a0158a6e65c3988ffacb1d62f29731b080460d 100644 (file)
@@ -64,8 +64,9 @@
  * 64bit block we have used is contained in *num;
  */
 
-void RC2_cfb64_encrypt(unsigned char *in, unsigned char *out, long length,
-            RC2_KEY *schedule, unsigned char *ivec, int *num, int encrypt)
+void RC2_cfb64_encrypt(const unsigned char *in, unsigned char *out,
+                      long length, RC2_KEY *schedule, unsigned char *ivec,
+                      int *num, int encrypt)
        {
        register unsigned long v0,v1,t;
        register int n= *num;