mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-20 10:37:24 -07:00
Correct indentation
This commit is contained in:
parent
a8dd22f53a
commit
8f353b5553
@ -79,7 +79,7 @@ crypto_auth_hmacsha256_update(crypto_auth_hmacsha256_state *state,
|
|||||||
|
|
||||||
int
|
int
|
||||||
crypto_auth_hmacsha256_final(crypto_auth_hmacsha256_state *state,
|
crypto_auth_hmacsha256_final(crypto_auth_hmacsha256_state *state,
|
||||||
unsigned char * out)
|
unsigned char *out)
|
||||||
{
|
{
|
||||||
unsigned char ihash[32];
|
unsigned char ihash[32];
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ crypto_auth_hmacsha512_update(crypto_auth_hmacsha512_state *state,
|
|||||||
|
|
||||||
int
|
int
|
||||||
crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state,
|
crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state,
|
||||||
unsigned char * out)
|
unsigned char *out)
|
||||||
{
|
{
|
||||||
unsigned char ihash[64];
|
unsigned char ihash[64];
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ crypto_auth_hmacsha512256_init(crypto_auth_hmacsha512256_state *state,
|
|||||||
|
|
||||||
int
|
int
|
||||||
crypto_auth_hmacsha512256_update(crypto_auth_hmacsha512256_state *state,
|
crypto_auth_hmacsha512256_update(crypto_auth_hmacsha512256_state *state,
|
||||||
const unsigned char * in,
|
const unsigned char *in,
|
||||||
unsigned long long inlen)
|
unsigned long long inlen)
|
||||||
{
|
{
|
||||||
return crypto_auth_hmacsha512_update((crypto_auth_hmacsha512_state *) state,
|
return crypto_auth_hmacsha512_update((crypto_auth_hmacsha512_state *) state,
|
||||||
@ -54,7 +54,7 @@ crypto_auth_hmacsha512256_update(crypto_auth_hmacsha512256_state *state,
|
|||||||
|
|
||||||
int
|
int
|
||||||
crypto_auth_hmacsha512256_final(crypto_auth_hmacsha512256_state *state,
|
crypto_auth_hmacsha512256_final(crypto_auth_hmacsha512256_state *state,
|
||||||
unsigned char * out)
|
unsigned char *out)
|
||||||
{
|
{
|
||||||
unsigned char out0[64];
|
unsigned char out0[64];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user