/usr/share/perl5/JSON/WebToken/Crypt.pm is in libjson-webtoken-perl 0.10-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | package JSON::WebToken::Crypt;
use strict;
use warnings;
sub sign {
my ($class, $algorithm, $message, $key) = @_;
die 'sign method must be implements!';
}
sub verify {
my ($class, $algorithm, $message, $key, $signature) = @_;
die 'verify method must be implements!'
}
1;
__END__
|