diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-30 18:31:37 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-30 18:31:37 +0000 |
commit | 3347b2f772ce1a60b3caa805d519130ba5ee636e (patch) | |
tree | c42aaae6c4b345f1369dd6515ca9beead8377cf7 /lib | |
parent | 1703adc9b090fd2c8a71bee552cf795869f9715d (diff) |
KNF for BF_KEY
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/bf/blowfish.h | 7 |
1 files 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); |