From d46b3d2367e280dcd08ee71d1a4135d69c02b266 Mon Sep 17 00:00:00 2001 From: GleammerRay <101527589+GleammerRay@users.noreply.github.com> Date: Sat, 5 Aug 2023 10:37:20 +0100 Subject: [PATCH] Update argon2.dart --- dargon2_interface/lib/src/argon2.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dargon2_interface/lib/src/argon2.dart b/dargon2_interface/lib/src/argon2.dart index 86956b6..8188099 100644 --- a/dargon2_interface/lib/src/argon2.dart +++ b/dargon2_interface/lib/src/argon2.dart @@ -39,7 +39,7 @@ abstract class DArgon2 { /// The Future method to hash a [String] password with Argon2 /// /// Needs a UTF-8 String [password] and a [salt] to be given with - /// an optional parameters to control the amount of [iterations], [memory], + /// an optional parameters to control the amount of [iterations], [memory] (in kibibytes), /// [parallelism] used during the operation. Also optionally takes a [length] /// parameter for the hash's return length, as well as a [type] and [version]. /// @@ -65,7 +65,7 @@ abstract class DArgon2 { /// The Future method to hash a List password with Argon2 /// /// Needs a [List] of type int [password] and a [salt] to be given with - /// an optional parameters to control the amount of [iterations], [memory], + /// an optional parameters to control the amount of [iterations], [memory] (in kibibytes), /// [parallelism] used during the operation. Also optionally takes a [length] /// parameter for the hash's return length, as well as a [type] and [version]. ///