tools: get_file_hash: add use statements for Digest module

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-06-15 14:22:18 +02:00
parent 3a94648515
commit dc4bc96960

View File

@ -2,6 +2,7 @@ package PVE::Tools;
use strict;
use warnings;
use POSIX qw(EINTR EEXIST EOPNOTSUPP);
use IO::Socket::IP;
use Socket qw(AF_INET AF_INET6 AI_ALL AI_V4MAPPED AI_CANONNAME SOCK_DGRAM IPPROTO_TCP);
@ -25,6 +26,8 @@ use String::ShellQuote;
use Time::HiRes qw(usleep gettimeofday tv_interval alarm);
use Scalar::Util 'weaken';
use Date::Format qw(time2str);
use Digest::SHA;
use Digest::MD5;
use PVE::Syscall;