Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix link to argon2 blogpost and add cross-references #1038

Merged
merged 1 commit into from
Feb 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/docs/concepts/credentials/username-email-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
3 changes: 3 additions & 0 deletions docs/docs/concepts/security.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/guides/setting-up-password-hashing-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down