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

Remove extra semicolumns

This commit is contained in:
Frank Denis 2017-09-13 12:45:04 +02:00
parent 62c41c703e
commit 979b21d67b

View File

@ -75,7 +75,7 @@ void tv(void)
crypto_stream_chacha20_xor_ic(out, out, sizeof out, nonce, 1U, key); crypto_stream_chacha20_xor_ic(out, out, sizeof out, nonce, 1U, key);
sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out); sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out);
printf("[%s]\n", out_hex); printf("[%s]\n", out_hex);
}; }
static static
void tv_ietf(void) void tv_ietf(void)
@ -163,7 +163,7 @@ void tv_ietf(void)
crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, 1U, key); crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, 1U, key);
sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out); sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out);
printf("[%s]\n", out_hex); printf("[%s]\n", out_hex);
}; }
int int
main(void) main(void)