Tidy includes, fix comment style and mop up some blank lines.
authorjsing <jsing@openbsd.org>
Fri, 11 Nov 2022 12:18:25 +0000 (12:18 +0000)
committerjsing <jsing@openbsd.org>
Fri, 11 Nov 2022 12:18:25 +0000 (12:18 +0000)
lib/libcrypto/bf/bf_cbc.c
lib/libcrypto/bf/bf_cfb64.c
lib/libcrypto/bf/bf_ecb.c
lib/libcrypto/bf/bf_enc.c
lib/libcrypto/bf/bf_ofb64.c
lib/libcrypto/bf/bf_skey.c

index 58e85b6..b13ea12 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_cbc.c,v 1.6 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_cbc.c,v 1.7 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -57,6 +57,7 @@
  */
 
 #include <openssl/blowfish.h>
+
 #include "bf_locl.h"
 
 void
@@ -134,4 +135,3 @@ BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
        tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0;
        tin[0] = tin[1] = 0;
 }
-
index 4ef15b9..7db0aed 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_cfb64.c,v 1.6 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_cfb64.c,v 1.7 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  */
 
 #include <openssl/blowfish.h>
+
 #include "bf_locl.h"
 
-/* The input and output encrypted as though 64bit cfb mode is being
+/*
+ * The input and output encrypted as though 64bit cfb mode is being
  * used.  The extra state information to record how much of the
  * 64bit block we have used is contained in *num;
  */
@@ -120,4 +122,3 @@ BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length,
        v0 = v1 = ti[0] = ti[1] = t=c = cc = 0;
        *num = n;
 }
-
index 3421b5f..2430455 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_ecb.c,v 1.7 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_ecb.c,v 1.8 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  */
 
 #include <openssl/blowfish.h>
-#include "bf_locl.h"
 #include <openssl/opensslv.h>
 
-/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
+#include "bf_locl.h"
+
+/*
+ * Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
  * (From LECTURE NOTES IN COMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION,
  * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
  */
@@ -97,4 +99,3 @@ BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
        l2n(l, out);
        l = d[0] = d[1] = 0;
 }
-
index 464d36d..780e703 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_enc.c,v 1.7 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_enc.c,v 1.8 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  */
 
 #include <openssl/blowfish.h>
+
 #include "bf_locl.h"
 
-/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
+/*
+ * Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
  * (From LECTURE NOTES IN COMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION,
  * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
  */
index 83a7655..e7aefef 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_ofb64.c,v 1.6 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_ofb64.c,v 1.7 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  */
 
 #include <openssl/blowfish.h>
+
 #include "bf_locl.h"
 
-/* The input and output encrypted as though 64bit ofb mode is being
+/*
+ * 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;
  */
@@ -107,4 +109,3 @@ BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length,
        t = v0 = v1 = ti[0] = ti[1] = 0;
        *num = n;
 }
-
index 8c214f7..03f494f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bf_skey.c,v 1.13 2022/11/11 12:08:29 jsing Exp $ */
+/* $OpenBSD: bf_skey.c,v 1.14 2022/11/11 12:18:25 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 
 #include <stdio.h>
 #include <string.h>
+
 #include <openssl/crypto.h>
 #include <openssl/blowfish.h>
+
 #include "bf_locl.h"
 #include "bf_pi.h"
 
@@ -70,7 +72,6 @@ BF_set_key(BF_KEY *key, int len, const unsigned char *data)
        BF_LONG *p, ri, in[2];
        const unsigned char *d, *end;
 
-
        memcpy(key, &bf_init, sizeof(BF_KEY));
        p = key->P;
 
@@ -117,4 +118,3 @@ BF_set_key(BF_KEY *key, int len, const unsigned char *data)
                p[i + 1] = in[1];
        }
 }
-