KNF for BF_KEY
authortb <tb@openbsd.org>
Tue, 30 Nov 2021 18:31:36 +0000 (18:31 +0000)
committertb <tb@openbsd.org>
Tue, 30 Nov 2021 18:31:36 +0000 (18:31 +0000)
lib/libcrypto/bf/blowfish.h

index 4d2db80..260545e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: blowfish.h,v 1.14 2014/07/10 09:01:04 miod Exp $ */
+/* $OpenBSD: blowfish.h,v 1.15 2021/11/30 18:31:36 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -84,11 +84,10 @@ extern "C" {
 #define BF_ROUNDS      16
 #define BF_BLOCK       8
 
-typedef struct bf_key_st
-       {
+typedef struct bf_key_st {
        BF_LONG P[BF_ROUNDS+2];
        BF_LONG S[4*256];
-       } BF_KEY;
+} BF_KEY;
 
 void BF_set_key(BF_KEY *key, int len, const unsigned char *data);