Compare commits

..

1 commit

Author SHA1 Message Date
dd779cedba
(minor) update library to depend on gs-std
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 2m36s
2026-05-06 22:51:10 -05:00
2 changed files with 3 additions and 3 deletions

View file

@ -137,7 +137,7 @@ object Argon2:
) )
/** @return /** @return
* [[Argon2.Params]] with default settings. Suitable for most cases. * [[Argon2.Config]] with default settings. Suitable for most cases.
*/ */
def defaultConfig(): Config = def defaultConfig(): Config =
Config( Config(

View file

@ -94,8 +94,8 @@ object Argon2Secret:
* *
* @param size * @param size
* The number of bytes in the secret value. * The number of bytes in the secret value.
* @param randomByteProvider * @param rng
* The [[RandomByteProvider]]. * The random number generator.
* @return * @return
* The new [[Argon2Secret]]. * The new [[Argon2Secret]].
*/ */