Support verify_depth from the SSL API without need for user-defined
[openssl.git] / crypto / cast / c_ofb64.c
index 2aad2d6d9691682cc166fcd502a3b524dc422005..4249870d9e34e6a7abcca751a7888f6a52d267a5 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include "cast.h"
+#include <openssl/cast.h>
 #include "cast_lcl.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 CAST_ofb64_encrypt(in, out, length, schedule, ivec, num)
-unsigned char *in;
-unsigned char *out;
-long length;
-CAST_KEY *schedule;
-unsigned char *ivec;
-int *num;
+void CAST_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
+            CAST_KEY *schedule, unsigned char *ivec, int *num)
        {
        register CAST_LONG v0,v1,t;
        register int n= *num;