From d7df42ae13a2a9bfb73a76ed96997dad88a794a9 Mon Sep 17 00:00:00 2001
From: David Tulloh <git-david@tulloh.id.au>
Date: Tue, 31 May 2016 18:24:05 +0200
Subject: [PATCH] Document the new digest_algo parameter

---
 docs/configuration.rst |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/docs/configuration.rst b/docs/configuration.rst
index 9400191..68cd9f9 100644
--- a/docs/configuration.rst
+++ b/docs/configuration.rst
@@ -103,7 +103,7 @@
         return password == hashed
     htpasswd = HTPasswdPlugin(io, cleartext_check)
     basicauth = BasicAuthPlugin('repoze.who')
-    auth_tkt = AuthTktCookiePlugin('secret', 'auth_tkt')
+    auth_tkt = AuthTktCookiePlugin('secret', 'auth_tkt', digest_algo="sha512")
     redirector = RedirectorPlugin('/login.html')
     redirector.classifications = {IChallenger:['browser'],} # only for browser
     identifiers = [('auth_tkt', auth_tkt),
@@ -220,6 +220,7 @@
     cookie_name = oatmeal
     secure = False
     include_ip = False
+    digest_algo = sha512
 
     [plugin:basicauth]
     # identification and challenge

--
Gitblit v1.9.3