X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=web%2FUtil.pm;h=1127c63d9f1f32e8f7ab7368779b159fe8219227;hb=7a0e9808163461d1e1ff7e2e0ee9c5e69ed33b9b;hp=89ef3fb8c6a982a94ff150bd910a61cd12015e1d;hpb=5364d2c2f24115fd1c27a19099a2321fe93fa5d4;p=mirror%2Fuserdir-ldap.git diff --git a/web/Util.pm b/web/Util.pm index 89ef3fb..1127c63 100644 --- a/web/Util.pm +++ b/web/Util.pm @@ -2,14 +2,19 @@ package Util; use strict; -use Crypt::Blowfish; my $blocksize = 8; # A blowfish block is 8 bytes my $configfile = "/etc/userdir-ldap/userdir-ldap.conf"; -#my $configfile = "./userdir-ldap.conf"; +#my $configfile = "/home/randolph/html/debian/perl/userdir-ldap.conf"; my %config = &ReadConfigFile; +my $hascryptix = 1; +eval 'use Crypt::Blowfish'; +if ($@) { + $hascryptix = undef; +} + sub CreateKey { my $keysize = shift; my $input; @@ -47,8 +52,8 @@ sub Encrypt { $input .= " " x ($blocksize - (length($input) % $blocksize)) if (length($input % $blocksize)); - for ($pos = 0; $pos < length($input); $pos += $blocksize) { - $output .= unpack("H16", $cipher->encrypt(substr($input, $pos, $blocksize))); + for ($pos = 0; $pos < length($input); $pos += $blocksize) { + $output .= unpack("H16", $cipher->encrypt(substr($input, $pos, $blocksize))) if ($hascryptix); } return $output; } @@ -64,7 +69,7 @@ sub Decrypt { for ($pos = 0; $pos < length($input); $pos += $blocksize*2) { $portion = pack("H16", substr($input, $pos, $blocksize*2)); - $output .= $cipher->decrypt($portion); + $output .= $cipher->decrypt($portion) if ($hascryptix); } $output =~ s/ +$//; @@ -115,27 +120,27 @@ sub ReadPasswordFromFile { } sub CheckAuthToken { - my ($id, $hrkey) = split(/:/, shift, 2); + my ($id, $hrkey) = split(/,/, shift, 2); return undef if (!$id || !$hrkey); my $key = pack("H".(length($hrkey)), $hrkey); my $cipher = new Crypt::Blowfish $key; my $r = ReadPasswordFromFile($id, $cipher); if ($r) { - UpdateAuthToken("$id:$hrkey", $r); + UpdateAuthToken("$id,$hrkey", $r); } else { - ClearAuthToken("$id:$hrkey") + ClearAuthToken("$id,$hrkey") } return $r; } sub ClearAuthToken { - my ($id, $hrkey) = split(/:/, shift, 2); + my ($id, $hrkey) = split(/,/, shift, 2); $id =~ y/\//_/; # switch / to _ unlink "$config{authtokenpath}/$id" || &HTMLError("Error removing authtoken: $!"); } sub UpdateAuthToken { - my ($id, $hrkey) = split(/:/, shift, 2); + my ($id, $hrkey) = split(/,/, shift, 2); my $password = shift; my $key = pack("H".(length($hrkey)), $hrkey); $id =~ y/\//_/; # switch / to _ @@ -258,10 +263,10 @@ sub ReadConfigFile { # Chop off any trailing comments s/#.*//; ($attr, $setting) = split(/=/, $_, 2); - $setting =~ s/"//g; + $setting =~ s/"//g; #" $setting =~ s/;$//; - $attr =~ s/^ +//; $attr =~ s/ +$//; - $setting =~ s/^ +//; $setting =~ s/ +$//; + $attr =~ s/^\s+//; $attr =~ s/\s+$//; + $setting =~ s/^\s+//; $setting =~ s/\s+$//; $config{$attr} = $setting; } }