perlPackages.Plack: add patch to avoid DES encrypted passwords in tests

This commit is contained in:
Stig Palmquist 2023-03-25 22:58:18 +01:00
parent 392b3f3dc3
commit 301d70dae8
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,12 @@
Replaces the legacy DES crypt hash used in tests with a stronger
bcrypt function, as crypt() in pkgs.perl no longer supports DES
# htpasswd -nbB admin s3cr3t
diff --git a/t/Plack-Middleware/htpasswd b/t/Plack-Middleware/htpasswd
index b597da8..f80461d 100644
--- a/t/Plack-Middleware/htpasswd
+++ b/t/Plack-Middleware/htpasswd
@@ -1,1 +1,1 @@
-admin:6iSeSVcVHgNQw
+admin:$2y$05$qO4lTUQMcE5mU6KI0t7j9uCjcTkpf6sAp0cv6oZiemD0MI8keeKPa

View File

@ -19593,6 +19593,9 @@ let
};
buildInputs = [ AuthenSimplePasswd CGIEmulatePSGI FileShareDirInstall HTTPRequestAsCGI HTTPServerSimplePSGI IOHandleUtil LWP LWPProtocolhttp10 LogDispatchArray MIMETypes TestMockTimeHiRes TestRequires TestSharedFork TestTCP ];
propagatedBuildInputs = [ ApacheLogFormatCompiler CookieBaker DevelStackTraceAsHTML FileShareDir FilesysNotifySimple HTTPEntityParser HTTPHeadersFast HTTPMessage TryTiny ];
patches = [
../development/perl-modules/Plack-test-replace-DES-hash-with-bcrypt.patch
];
meta = {
description = "Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)";
homepage = "https://github.com/plack/Plack";