1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00

Correct indentation

This commit is contained in:
Frank Denis 2017-03-13 09:14:40 +01:00
parent a8dd22f53a
commit 8f353b5553
3 changed files with 4 additions and 4 deletions

View File

@ -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];

View File

@ -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];

View File

@ -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,
@ -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];