summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/LWP/Authen
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/LWP/Authen')
-rw-r--r--Master/tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm4
-rw-r--r--Master/tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm4
-rw-r--r--Master/tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm2
3 files changed, 7 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm
index 18fe8cd5f1c..a5cc949e6a3 100644
--- a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm
+++ b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm
@@ -1,7 +1,9 @@
package LWP::Authen::Basic;
-$LWP::Authen::Basic::VERSION = '6.25';
+
use strict;
+our $VERSION = '6.31';
+
require MIME::Base64;
sub auth_header {
diff --git a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm
index 2e80af49729..7a7c3e01e04 100644
--- a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm
+++ b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm
@@ -1,8 +1,10 @@
package LWP::Authen::Digest;
-$LWP::Authen::Digest::VERSION = '6.25';
+
use strict;
use base 'LWP::Authen::Basic';
+our $VERSION = '6.31';
+
require Digest::MD5;
sub auth_header {
diff --git a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm
index 7fd0a827f3d..3c3a7c30bb2 100644
--- a/Master/tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm
+++ b/Master/tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm
@@ -2,7 +2,7 @@ package LWP::Authen::Ntlm;
use strict;
-our $VERSION = '6.25';
+our $VERSION = '6.31';
use Authen::NTLM "1.02";
use MIME::Base64 "2.12";