summaryrefslogtreecommitdiff
path: root/docs/narr/security.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-12-31 16:38:44 -0600
committerMichael Merickel <michael@merickel.org>2019-12-31 16:40:17 -0600
commit4255eecf1544731a7200ab0a24671195416601e2 (patch)
tree6093df1281394ac186bf598f8ca3c27626fd4ae2 /docs/narr/security.rst
parent25439c2dbd4ff971e2a32ac96fc893de0bdcefd3 (diff)
downloadpyramid-4255eecf1544731a7200ab0a24671195416601e2.tar.gz
pyramid-4255eecf1544731a7200ab0a24671195416601e2.tar.bz2
pyramid-4255eecf1544731a7200ab0a24671195416601e2.zip
change hashalg on AuthTktCookieHelper to sha512.
Diffstat (limited to 'docs/narr/security.rst')
-rw-r--r--docs/narr/security.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/security.rst b/docs/narr/security.rst
index e3820ce19..72c2721f6 100644
--- a/docs/narr/security.rst
+++ b/docs/narr/security.rst
@@ -698,7 +698,7 @@ A "secret" is required by various components of Pyramid. For example, the
helper below might be used for a security policy and uses a secret value
``seekrit``::
- helper = AuthTktCookieHelper('seekrit', hashalg='sha512')
+ helper = AuthTktCookieHelper('seekrit')
A :term:`session factory` also requires a secret::