summaryrefslogtreecommitdiffstats
path: root/crypto/des/ofb64enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/des/ofb64enc.c')
-rw-r--r--crypto/des/ofb64enc.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/crypto/des/ofb64enc.c b/crypto/des/ofb64enc.c
index b6a2f639eb..545c749c55 100644
--- a/crypto/des/ofb64enc.c
+++ b/crypto/des/ofb64enc.c
@@ -62,13 +62,9 @@
* used. The extra state information to record how much of the
* 64bit block we have used is contained in *num;
*/
-void des_ofb64_encrypt(in, out, length, schedule, ivec, num)
-register const unsigned char *in;
-register unsigned char *out;
-long length;
-des_key_schedule schedule;
-des_cblock ivec;
-int *num;
+void des_ofb64_encrypt(register const unsigned char *in,
+ register unsigned char *out, long length, des_key_schedule schedule,
+ des_cblock ivec, int *num)
{
register DES_LONG v0,v1,t;
register int n= *num;