Change functions to ANSI C.
[openssl.git] / crypto / bf / bf_cbc.c
index e0fa9ad7631956994fbc87a00a06a3191122fd23..90f1ffef2bc42bdb851d52d737b1c04922cf55e9 100644 (file)
 #include "blowfish.h"
 #include "bf_locl.h"
 
-void BF_cbc_encrypt(in, out, length, ks, iv, encrypt)
-unsigned char *in;
-unsigned char *out;
-long length;
-BF_KEY *ks;
-unsigned char *iv;
-int encrypt;
+void BF_cbc_encrypt(unsigned char *in, unsigned char *out, long length,
+            BF_KEY *ks, unsigned char *iv, int encrypt)
        {
        register BF_LONG tin0,tin1;
        register BF_LONG tout0,tout1,xor0,xor1;