1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2024-11-29
Bug-Debian: https://bugs.debian.org/774507
Description: Fix link to reference document
Forwarded: no (upstream seems inactive)
Comment: You can find the original link in the web archive at
https://web.archive.org/web/20130615055336/http://www.rsa.com/rsalabs/node.asp?id=2127
--- a/README.txt
+++ b/README.txt
@@ -2,7 +2,9 @@ Python PKCS#5 v2.0 PBKDF2 Module
--------------------------------
This module implements the password-based key derivation function, PBKDF2,
-specified in `RSA PKCS#5 v2.0 <http://www.rsa.com/rsalabs/node.asp?id=2127>`_.
+specified in `RSA PKCS#5 v2.0 <https://datatracker.ietf.org/doc/html/rfc2898>`_.
+(Note: There is an update `PKCS #5: Password-Based Cryptography Specification
+Version 2.1 available <https://datatracker.ietf.org/doc/rfc8018/>`_.)
Example PBKDF2 usage
====================
|