diff options
| author | tb <> | 2018-04-03 21:59:37 +0000 |
|---|---|---|
| committer | tb <> | 2018-04-03 21:59:37 +0000 |
| commit | 426a421e14686f45bc9d7f73c4ea02bac4262e4d (patch) | |
| tree | c29ac242ed77869bfc4ab63cdc6a175aae4052e2 /src/lib/libcrypto/aes | |
| parent | f91a5c408f1bcaa49c4216874fba06a718ed8ede (diff) | |
| download | openbsd-426a421e14686f45bc9d7f73c4ea02bac4262e4d.tar.gz openbsd-426a421e14686f45bc9d7f73c4ea02bac4262e4d.tar.bz2 openbsd-426a421e14686f45bc9d7f73c4ea02bac4262e4d.zip | |
KNF: move two opening curly braces of function bodies to their own lines
Diffstat (limited to 'src/lib/libcrypto/aes')
| -rw-r--r-- | src/lib/libcrypto/aes/aes_x86core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/aes/aes_x86core.c b/src/lib/libcrypto/aes/aes_x86core.c index c604fa876f..d0d12dc3ae 100644 --- a/src/lib/libcrypto/aes/aes_x86core.c +++ b/src/lib/libcrypto/aes/aes_x86core.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: aes_x86core.c,v 1.8 2015/02/10 09:46:30 miod Exp $ */ | 1 | /* $OpenBSD: aes_x86core.c,v 1.9 2018/04/03 21:59:37 tb Exp $ */ |
| 2 | /** | 2 | /** |
| 3 | * rijndael-alg-fst.c | 3 | * rijndael-alg-fst.c |
| 4 | * | 4 | * |
| @@ -465,7 +465,8 @@ static const u32 rcon[] = { | |||
| 465 | * Expand the cipher key into the encryption key schedule. | 465 | * Expand the cipher key into the encryption key schedule. |
| 466 | */ | 466 | */ |
| 467 | int | 467 | int |
| 468 | AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) { | 468 | AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) |
| 469 | { | ||
| 469 | u32 *rk; | 470 | u32 *rk; |
| 470 | int i = 0; | 471 | int i = 0; |
| 471 | u32 temp; | 472 | u32 temp; |
