dougm 01/12/21 15:06:49
Modified: perl-framework/Apache-Test/lib/Apache TestSSLCA.pm
Log:
win32 and netware need a cleartext password for FakeBasicAuth
Revision Changes Path
1.6 +5 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm
Index: TestSSLCA.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- TestSSLCA.pm 2001/12/20 19:07:03 1.5
+++ TestSSLCA.pm 2001/12/21 23:06:49 1.6
@@ -198,8 +198,12 @@
$config;
}
+use constant PASSWORD_CLEARTEXT =>
+ Apache::TestConfig::WIN32 || Apache::TestConfig::NETWARE;
+
#http://www.modssl.org/docs/2.8/ssl_reference.html#ToC21
-my $basic_auth_password = 'xxj31ZMTZzkVA';
+my $basic_auth_password =
+ PASSWORD_CLEARTEXT ? 'password': 'xxj31ZMTZzkVA';
my $digest_auth_hash = '$1$OXLyS...$Owx8s2/m9/gfkcRVXzgoE/';
sub new_ca {