From 273f3cef704dcd1bd04e28aceab061e69a7155c6 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Fri, 13 Mar 2009 23:03:28 +0100 Subject: [PATCH] Updated pbkdf2.py to the newest upstream version --- pbkdf2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pbkdf2.py b/pbkdf2.py index fd22e73..2b7dd07 100644 --- a/pbkdf2.py +++ b/pbkdf2.py @@ -4,12 +4,14 @@ # for details. Basically, it derives a key from a password and salt. # (c) 2004 Matt Johnston -# This code may be freely used and modified for any purpose. +# This code may be freely used, distributed, relicensed, and modified for any +# purpose. # Revision history # v0.1 October 2004 - Initial release # v0.2 8 March 2007 - Make usable with hashlib in Python 2.5 and use # v0.3 "" the correct digest_size rather than always 20 +# v0.4 13 March 2009 - Mention distribution and relicensing in the copyright import sys import hmac -- 2.11.4.GIT