59 lines
1.4 KiB
Perl
59 lines
1.4 KiB
Perl
|
#!/usr/bin/perl
|
||
|
package JMX::Jmx4Perl::Agent::Jolokia::Verifier::SHA1Verifier;
|
||
|
|
||
|
use Digest::SHA1;
|
||
|
use JMX::Jmx4Perl::Agent::Jolokia::Verifier::ChecksumVerifier;
|
||
|
use base qw(JMX::Jmx4Perl::Agent::Jolokia::Verifier::ChecksumVerifier);
|
||
|
use strict;
|
||
|
|
||
|
=head1 NAME
|
||
|
|
||
|
JMX::Jmx4Perl::Agent::Jolokia::Verifier::SHA1Verifier - Verifies a
|
||
|
SHA1 checksum
|
||
|
|
||
|
=head1 DESCRIPTION
|
||
|
|
||
|
Verifies against a SHA1 checksum for an artifact. The SHA1 sum needs to be
|
||
|
available parallel to the download artifact with a ".sha1" extension.
|
||
|
|
||
|
=cut
|
||
|
|
||
|
sub extension {
|
||
|
return ".sha1";
|
||
|
}
|
||
|
|
||
|
sub name {
|
||
|
return "SHA1";
|
||
|
}
|
||
|
|
||
|
sub create_digester {
|
||
|
return new Digest::SHA1();
|
||
|
}
|
||
|
|
||
|
=head1 LICENSE
|
||
|
|
||
|
This file is part of jmx4perl.
|
||
|
Jmx4perl is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
The Free Software Foundation, either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
jmx4perl is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with jmx4perl. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
A commercial license is available as well. Please contact roland@cpan.org for
|
||
|
further details.
|
||
|
|
||
|
=head1 AUTHOR
|
||
|
|
||
|
roland@cpan.org
|
||
|
|
||
|
=cut
|
||
|
|
||
|
1;
|