From 2d1574551ebfc84c91a8422c00081c47e2ff4ad9 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 30 Nov 2021 18:31:36 +0000 Subject: [PATCH] KNF for BF_KEY --- lib/libcrypto/bf/blowfish.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/libcrypto/bf/blowfish.h b/lib/libcrypto/bf/blowfish.h index 4d2db80552c..260545e6bd6 100644 --- a/lib/libcrypto/bf/blowfish.h +++ b/lib/libcrypto/bf/blowfish.h @@ -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); -- 2.20.1