Skip to content

Commit

Permalink
Correct indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Mar 13, 2017
1 parent a8dd22f commit 8f353b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ crypto_auth_hmacsha256_update(crypto_auth_hmacsha256_state *state,

int
crypto_auth_hmacsha256_final(crypto_auth_hmacsha256_state *state,
unsigned char * out)
unsigned char *out)
{
unsigned char ihash[32];

Expand Down
2 changes: 1 addition & 1 deletion src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ crypto_auth_hmacsha512_update(crypto_auth_hmacsha512_state *state,

int
crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state,
unsigned char * out)
unsigned char *out)
{
unsigned char ihash[64];

Expand Down
4 changes: 2 additions & 2 deletions src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ crypto_auth_hmacsha512256_init(crypto_auth_hmacsha512256_state *state,

int
crypto_auth_hmacsha512256_update(crypto_auth_hmacsha512256_state *state,
const unsigned char * in,
const unsigned char *in,
unsigned long long inlen)
{
return crypto_auth_hmacsha512_update((crypto_auth_hmacsha512_state *) state,
Expand All @@ -54,7 +54,7 @@ crypto_auth_hmacsha512256_update(crypto_auth_hmacsha512256_state *state,

int
crypto_auth_hmacsha512256_final(crypto_auth_hmacsha512256_state *state,
unsigned char * out)
unsigned char *out)
{
unsigned char out0[64];

Expand Down

0 comments on commit 8f353b5

Please sign in to comment.