Ubuntu Manpages

RDF::Crypt::Encrypter

encrypts RDF graphs

 use 5.010;
 use RDF::Crypt::Encrypter;
 use RDF::TrineX::Functions qw< parse >;
 
 my $enc = RDF::Crypt::Encrypter->new_from_webid(
    'http://www.example.com/people/alice#me'
 );
 
 my $graph     = parse '/path/to/secret.ttl';
 my $scrambled = $enc->encrypt_model($graph);

An Encrypter object is created using an RSA public key. The object can be used to encrypt an RDF graph for a recipient.

  • RDF::Crypt::Role::WithPublicKeys
  • RDF::Crypt::Role::DoesEncrypt
  • RDF::Crypt::Role::ToString

RDF::Crypt, RDF::Crypt::Decrypter.

Please report any bugs to <http://rt.cpan.org/>.

Toby Inkster <tobyink@cpan.org>.

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.

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.