From e4821ceef317833a98280fa5e417f6b937755cd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Barto=C5=A1?= Date: Sat, 8 Jul 2023 19:17:53 +0200 Subject: [PATCH] Docs: integrations --- docs/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/README.md b/docs/README.md index c2a6c03..8cf7676 100644 --- a/docs/README.md +++ b/docs/README.md @@ -39,6 +39,7 @@ Authentication and authorization - [Bcrypt](#bcrypt-hasher) - [Backward compatibility - upgrading when user logs in](#backward-compatibility---upgrading-when-user-logs-in) - [Backward compatibility - migrating from an unsafe algorithm](#backward-compatibility---migrating-from-an-unsafe-algorithm) +- [Integrations and extensions](#integrations-and-extensions) ## Setup @@ -1356,3 +1357,7 @@ Instead, use the existing password hashes as inputs for a more secure algorithm. originally stored passwords as `md5($password)`, this could be easily upgraded to `bcrypt(md5($password))`. Layering the hashes avoids the need to know the original password; however, it can make the hashes easier to crack. These hashes should be replaced with direct hashes of the users' passwords next time the user logs in. + +## Integrations and extensions + +- [Nette](https://github.com/nette) integration - [orisai/nette-auth](https://github.com/orisai/nette-auth)