]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/cast/c_ofb64.c
Change functions to ANSI C.
[thirdparty/openssl.git] / crypto / cast / c_ofb64.c
index 2aad2d6d9691682cc166fcd502a3b524dc422005..1ccaec7976991121fc8abe23f6af5954bf889649 100644 (file)
  * 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;