static before const.
This commit is contained in:
parent
1d0c670b9c
commit
b24124a73d
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: misc.c,v 1.2 2006/01/25 15:27:42 kleink Exp $ */
|
||||
/* $NetBSD: misc.c,v 1.3 2006/10/15 16:11:04 christos Exp $ */
|
||||
|
||||
/****************************************************************
|
||||
|
||||
|
@ -379,7 +379,7 @@ pow5mult
|
|||
{
|
||||
Bigint *b1, *p5, *p51;
|
||||
int i;
|
||||
CONST static int p05[3] = { 5, 25, 125 };
|
||||
static CONST int p05[3] = { 5, 25, 125 };
|
||||
|
||||
if ( (i = k & 3) !=0)
|
||||
b = multadd(b, p05[i-1], 0);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sha2.c,v 1.5 2005/09/26 02:59:29 christos Exp $ */
|
||||
/* $NetBSD: sha2.c,v 1.6 2006/10/15 16:11:04 christos Exp $ */
|
||||
/* $KAME: sha2.c,v 1.9 2003/07/20 00:28:38 itojun Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -210,7 +210,7 @@ void SHA512_Transform(SHA512_CTX*, const sha2_word64*);
|
|||
|
||||
/*** SHA-XYZ INITIAL HASH VALUES AND CONSTANTS ************************/
|
||||
/* Hash constant words K for SHA-256: */
|
||||
const static sha2_word32 K256[64] = {
|
||||
static const sha2_word32 K256[64] = {
|
||||
0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL,
|
||||
0x3956c25bUL, 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL,
|
||||
0xd807aa98UL, 0x12835b01UL, 0x243185beUL, 0x550c7dc3UL,
|
||||
|
@ -230,7 +230,7 @@ const static sha2_word32 K256[64] = {
|
|||
};
|
||||
|
||||
/* Initial hash value H for SHA-256: */
|
||||
const static sha2_word32 sha256_initial_hash_value[8] = {
|
||||
static const sha2_word32 sha256_initial_hash_value[8] = {
|
||||
0x6a09e667UL,
|
||||
0xbb67ae85UL,
|
||||
0x3c6ef372UL,
|
||||
|
@ -242,7 +242,7 @@ const static sha2_word32 sha256_initial_hash_value[8] = {
|
|||
};
|
||||
|
||||
/* Hash constant words K for SHA-384 and SHA-512: */
|
||||
const static sha2_word64 K512[80] = {
|
||||
static const sha2_word64 K512[80] = {
|
||||
0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL,
|
||||
0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL,
|
||||
0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL,
|
||||
|
@ -286,7 +286,7 @@ const static sha2_word64 K512[80] = {
|
|||
};
|
||||
|
||||
/* Initial hash value H for SHA-384 */
|
||||
const static sha2_word64 sha384_initial_hash_value[8] = {
|
||||
static const sha2_word64 sha384_initial_hash_value[8] = {
|
||||
0xcbbb9d5dc1059ed8ULL,
|
||||
0x629a292a367cd507ULL,
|
||||
0x9159015a3070dd17ULL,
|
||||
|
@ -298,7 +298,7 @@ const static sha2_word64 sha384_initial_hash_value[8] = {
|
|||
};
|
||||
|
||||
/* Initial hash value H for SHA-512 */
|
||||
const static sha2_word64 sha512_initial_hash_value[8] = {
|
||||
static const sha2_word64 sha512_initial_hash_value[8] = {
|
||||
0x6a09e667f3bcc908ULL,
|
||||
0xbb67ae8584caa73bULL,
|
||||
0x3c6ef372fe94f82bULL,
|
||||
|
|
Loading…
Reference in New Issue