1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 01:55:02 -07:00

Remove unused variables

This commit is contained in:
Frank Denis 2024-09-18 12:39:21 +02:00
parent 1012bbc380
commit 8e245590d8
2 changed files with 0 additions and 2 deletions

View File

@ -13,7 +13,6 @@ main(void)
{
unsigned char bobpk[32];
char hex[65];
int i;
crypto_scalarmult_base(bobpk, bobsk);
sodium_bin2hex(hex, sizeof hex, bobpk, sizeof bobpk);

View File

@ -19,7 +19,6 @@ main(void)
{
unsigned char k[32];
char hex[65];
int i;
int ret;
ret = crypto_scalarmult(k, alicesk, bobpk);