From feb971f649e4dacec7287660be0e1660da787dae Mon Sep 17 00:00:00 2001 From: Martin Krizek Date: Mon, 17 Dec 2018 15:58:47 +0100 Subject: [PATCH] docs: remove not implemented password_hash feature (#49945) (#50008) (cherry picked from commit 79947245e26e1c7067e478eff115eabbc79b39d9) --- docs/docsite/rst/user_guide/playbooks_filters.rst | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index 4d42eeb5d21..290e0295997 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -789,12 +789,6 @@ Some hash types allow providing a rounds parameter:: {{ 'secretpassword' | password_hash('sha256', 'mysecretsalt', rounds=10000) }} -When`Passlib `_ is installed -`password_hash` supports any crypt scheme and parameter supported by 'Passlib':: - - {{ 'secretpassword' | password_hash('sha256_crypt', 'mysecretsalt', rounds=5000) }} - {{ 'secretpassword' | password_hash('bcrypt', ident='2b', rounds=14) }} - .. _combine_filter: Combining hashes/dictionaries