Codebase list libcryptx-perl / c7b047b
failure on perl 5.10 Karel Miko 8 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
6262 return $self->_import_hex($p, $q, $g, undef, $y) if $typ && $p && $q && $g && $y && $typ eq 'ssh-dss';
6363 }
6464 elsif ($data =~ /ssh-dss\s+(\S+)/) {
65 $data = _decode_base64($1);
65 $data = _decode_base64("$1");
6666 my ($typ, $p, $q, $g, $y) = Crypt::PK::_ssh_parse($data);
6767 return $self->_import_hex($p, $q, $g, undef, $y) if $typ && $p && $q && $g && $y && $typ eq 'ssh-dss';
6868 }