From 7a107ff65e879fcc10d587e6b42b07689501b594 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 6 Jan 2026 17:38:21 +0100 Subject: [PATCH] extend doc related to bcrypt vs. passlib/libpass --- DOCUMENTATION.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index d46667f3..0b4c6636 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -1037,6 +1037,7 @@ Available methods: * `bcrypt` This uses a modified version of the Blowfish stream cipher, which is considered very secure. The installation of Python's **bcrypt** module is required for this to work. + Also consider version of passlib(libpass): bcrypt >= 5.0.0 requires passlib(libpass) >= 1.9.3 * `md5` Use an iterated MD5 digest of the password with salt (nowadays insecure).