/usr/share/perl5/RDF/Crypt.pm is in librdf-crypt-perl 0.002-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 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | package RDF::Crypt;
use 5.010;
use RDF::Crypt::Verifier;
use RDF::Crypt::Signer;
use RDF::Crypt::Encrypter;
use RDF::Crypt::Decrypter;
our $SENDER;
BEGIN {
$RDF::Crypt::AUTHORITY = 'cpan:TOBYINK';
$RDF::Crypt::VERSION = '0.002';
}
1;
=head1 NAME
RDF::Crypt - semantic cryptography
=head1 DESCRIPTION
RDF-Crypt provides a variety of objects and methods for cryptographically
manipulating (encrypting, decrypting, signing and verifying) RDF graphs using
RSA and WebID.
RDF-Crypt uses a role-based architecture. Classes like RDF::Crypt::Encrypter
are in fact very slim wrappers around collections of roles. Most of the
interesting behaviour is documented in the role modules.
=head1 SEE ALSO
L<RDF::Crypt::Encrypter>,
L<RDF::Crypt::Decrypter>,
L<RDF::Crypt::Signer>,
L<RDF::Crypt::Verifier>.
L<Web::ID>, L<RDF::ACL>.
L<http://www.perlrdf.org/>.
=head1 BUGS
Please report any bugs to L<http://rt.cpan.org/>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT
Copyright 2010, 2012 Toby Inkster
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|