From e04f81970d2c91190ca8d707df7ce611425f772b Mon Sep 17 00:00:00 2001 From: zepatrik Date: Fri, 5 Feb 2021 11:23:21 +0100 Subject: [PATCH] docs: link to argon2 blogpost and add cross-references --- docs/docs/concepts/credentials/username-email-password.mdx | 3 +++ docs/docs/concepts/security.mdx | 3 +++ docs/docs/guides/setting-up-password-hashing-parameters.md | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/docs/concepts/credentials/username-email-password.mdx b/docs/docs/concepts/credentials/username-email-password.mdx index c0fa1bfef84f..b235912a4eba 100644 --- a/docs/docs/concepts/credentials/username-email-password.mdx +++ b/docs/docs/concepts/credentials/username-email-password.mdx @@ -38,6 +38,9 @@ hashers: key_length: 32 ``` +To determine the ideal parameters, head over to the +[setup guide](../../guides/setting-up-password-hashing-parameters). + When a user signs up using this method, the Default Identity JSON Schema (set using `identity.default_schema_url`) is used: diff --git a/docs/docs/concepts/security.mdx b/docs/docs/concepts/security.mdx index c65381a68ecf..e70fb26db005 100644 --- a/docs/docs/concepts/security.mdx +++ b/docs/docs/concepts/security.mdx @@ -202,6 +202,9 @@ hashers: key_length: 32 ``` +To determine the ideal parameters, head over to the +[setup guide](../../guides/setting-up-password-hashing-parameters). + ### Password Policy To prevent weak passwords ORY Kratos implements different measures. Users often diff --git a/docs/docs/guides/setting-up-password-hashing-parameters.md b/docs/docs/guides/setting-up-password-hashing-parameters.md index 9ac8efce7756..976688521509 100644 --- a/docs/docs/guides/setting-up-password-hashing-parameters.md +++ b/docs/docs/guides/setting-up-password-hashing-parameters.md @@ -24,7 +24,8 @@ $ kratos hashers argon2 calibrate 1s It will output the exact values to use in the [configuration](../reference/configuration.md). -Head to [our blogpost](https://ory.sh/argon2-parameter-choice-best-practice/) +Head to +[our blogpost](https://www.ory.sh/choose-recommended-argon2-parameters-password-hashing/) about Argon2 parameters to learn how this command and password checking in ORY Kratos works.