From 3f17f30cd55656419b768214bd53799592644432 Mon Sep 17 00:00:00 2001
From: Hong Yuan <hongyuan@homemaster.cn>
Date: Sun, 18 Mar 2018 22:38:48 +0100
Subject: [PATCH] Fix secret length in doc of SignedCookieSessionFactory

---
 pyramid/session.py |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pyramid/session.py b/pyramid/session.py
index 3311934..4a9c8c1 100644
--- a/pyramid/session.py
+++ b/pyramid/session.py
@@ -141,7 +141,7 @@
     ):
     """
     .. versionadded:: 1.5
-    
+
     Configure a :term:`session factory` which will provide cookie-based
     sessions.  The return value of this function is a :term:`session factory`,
     which may be provided as the ``session_factory`` argument of a
@@ -393,7 +393,7 @@
         compatible with cookies generated using
         ``UnencryptedCookieSessionFactory``, so existing user session data
         will be destroyed if you switch to it.
-    
+
     Configure a :term:`session factory` which will provide unencrypted
     (but signed) cookie-based sessions.  The return value of this
     function is a :term:`session factory`, which may be provided as
@@ -452,7 +452,7 @@
     class SerializerWrapper(object):
         def __init__(self, secret):
             self.secret = secret
-            
+
         def loads(self, bstruct):
             return signed_deserialize(bstruct, secret)
 
@@ -500,7 +500,7 @@
     ):
     """
     .. versionadded:: 1.5
-    
+
     Configure a :term:`session factory` which will provide signed
     cookie-based sessions.  The return value of this
     function is a :term:`session factory`, which may be provided as
@@ -519,7 +519,7 @@
     ``secret``
       A string which is used to sign the cookie. The secret should be at
       least as long as the block size of the selected hash algorithm. For
-      ``sha512`` this would mean a 128 bit (64 character) secret.  It should
+      ``sha512`` this would mean a 512 bit (64 character) secret.  It should
       be unique within the set of secret values provided to Pyramid for
       its various subsystems (see :ref:`admonishment_against_secret_sharing`).
 

--
Gitblit v1.9.3