aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenryk Plötz <henryk@ploetzli.ch>2014-10-03 20:32:15 +0200
committerHenryk Plötz <henryk@ploetzli.ch>2014-10-03 20:32:15 +0200
commit1c7b1e2916816829da6e8ae7b601e0511e506237 (patch)
treeb7e22f39e28a8e0c90cae4174949b41f97b4bf0d
parentd36aaed889440db27b6dc12553d2bc0564194e98 (diff)
downloadtinydnssec-1c7b1e2916816829da6e8ae7b601e0511e506237.tar.gz
tinydnssec-1c7b1e2916816829da6e8ae7b601e0511e506237.tar.bz2
Use Digest::SHA instead of Digest::SHA1.
Digest::SHA1 is not available in Ubuntu repositories, and is fully replaced by Digest::SHA. https://bugs.launchpad.net/ubuntu/+source/libdigest-sha1-perl/+bug/993648
-rwxr-xr-xtinydns-sign.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinydns-sign.pl b/tinydns-sign.pl
index fd72033..20cca1e 100755
--- a/tinydns-sign.pl
+++ b/tinydns-sign.pl
@@ -16,7 +16,7 @@
use strict;
use Fcntl;
-use Digest::SHA1 qw(sha1 sha1_hex);
+use Digest::SHA qw(sha1 sha1_hex);
use Crypt::OpenSSL::RSA;
use MIME::Base64;