From d121c829ee2e0d746ab3d42628db9ce5fc2e47cb Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 29 Dec 2025 23:05:15 +0100 Subject: [PATCH] Format --- src/libsodium/crypto_pwhash/argon2/argon2.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libsodium/crypto_pwhash/argon2/argon2.h b/src/libsodium/crypto_pwhash/argon2/argon2.h index 3b05daac..a1014a47 100644 --- a/src/libsodium/crypto_pwhash/argon2/argon2.h +++ b/src/libsodium/crypto_pwhash/argon2/argon2.h @@ -151,11 +151,11 @@ typedef enum Argon2_ErrorCodes { ***** * Simplest situation: you have output array out[8], password is stored in * pwd[32], salt is stored in salt[16], you do not have keys nor associated - *data. + * data. * You need to spend 1 GB of RAM and you run 5 passes of Argon2 with 4 parallel - *lanes. + * lanes. * You want to erase the password, but you're OK with last pass not being - *erased. + * erased. * You want to use the default memory allocator. * Then you initialize: * Argon2_Context(out,8,pwd,32,salt,16,NULL,0,NULL,0,5,1<<20,4,4,NULL,NULL,true,false,false,false). @@ -190,7 +190,7 @@ typedef enum Argon2_type { Argon2_i = 1, Argon2_id = 2 } argon2_type; /* * Function that performs memory-hard hashing with certain degree of parallelism * @param context Pointer to the Argon2 internal structure - * @return Error code if smth is wrong, ARGON2_OK otherwise + * @return Error code if something is wrong, ARGON2_OK otherwise */ int argon2_ctx(argon2_context *context, argon2_type type);