diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-29 06:08:05 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-29 06:08:05 +0000 |
commit | b15bc76c62161409e04fcb986d174856b3662ef3 (patch) | |
tree | cef186f363ef857a11efa29c5adf925a1cce7b2d /sys/crypto | |
parent | 001bb62ccba9e90f7c2ec4eacb978131906dc341 (diff) |
static const, not const static
c99 6.11.5:
"The placement of a storage-class specifier other than at the beginning
of the declaration specifiers in a declaration is an obsolescent
feature."
ok miod@ tb@
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/sha2.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/crypto/sha2.c b/sys/crypto/sha2.c index 769b73262ca..f789ef3f55b 100644 --- a/sys/crypto/sha2.c +++ b/sys/crypto/sha2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha2.c,v 1.19 2021/03/12 10:22:46 jsg Exp $ */ +/* $OpenBSD: sha2.c,v 1.20 2022/08/29 06:08:03 jsg Exp $ */ /* * FILE: sha2.c @@ -152,7 +152,7 @@ void SHA512Transform(u_int64_t *, const u_int8_t *); /*** SHA-XYZ INITIAL HASH VALUES AND CONSTANTS ************************/ /* Hash constant words K for SHA-256: */ -const static u_int32_t K256[64] = { +static const u_int32_t K256[64] = { 0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL, 0x3956c25bUL, 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL, 0xd807aa98UL, 0x12835b01UL, 0x243185beUL, 0x550c7dc3UL, @@ -172,7 +172,7 @@ const static u_int32_t K256[64] = { }; /* Initial hash value H for SHA-256: */ -const static u_int32_t sha256_initial_hash_value[8] = { +static const u_int32_t sha256_initial_hash_value[8] = { 0x6a09e667UL, 0xbb67ae85UL, 0x3c6ef372UL, @@ -184,7 +184,7 @@ const static u_int32_t sha256_initial_hash_value[8] = { }; /* Hash constant words K for SHA-384 and SHA-512: */ -const static u_int64_t K512[80] = { +static const u_int64_t K512[80] = { 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL, @@ -228,7 +228,7 @@ const static u_int64_t K512[80] = { }; /* Initial hash value H for SHA-384 */ -const static u_int64_t sha384_initial_hash_value[8] = { +static const u_int64_t sha384_initial_hash_value[8] = { 0xcbbb9d5dc1059ed8ULL, 0x629a292a367cd507ULL, 0x9159015a3070dd17ULL, @@ -240,7 +240,7 @@ const static u_int64_t sha384_initial_hash_value[8] = { }; /* Initial hash value H for SHA-512 */ -const static u_int64_t sha512_initial_hash_value[8] = { +static const u_int64_t sha512_initial_hash_value[8] = { 0x6a09e667f3bcc908ULL, 0xbb67ae8584caa73bULL, 0x3c6ef372fe94f82bULL, |