mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 20:24:39 +02:00
blake2b: declaration after execution statements, for embedded compiler
This commit is contained in:
@@ -106,8 +106,9 @@ static INLINE int blake2b_init0( blake2b_state *S )
|
|||||||
int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
|
int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
|
||||||
{
|
{
|
||||||
word32 i;
|
word32 i;
|
||||||
|
byte *p ;
|
||||||
blake2b_init0( S );
|
blake2b_init0( S );
|
||||||
byte *p = ( byte * )( P );
|
p = ( byte * )( P );
|
||||||
|
|
||||||
/* IV XOR ParamBlock */
|
/* IV XOR ParamBlock */
|
||||||
for( i = 0; i < 8; ++i )
|
for( i = 0; i < 8; ++i )
|
||||||
|
Reference in New Issue
Block a user