Meta
view release on metacpan or search on metacpan
Meta/Demos/demo_gpg.pl view on Meta::CPAN
#!/usr/bin/env perl
use strict qw(vars refs subs);
use Meta::Utils::System qw();
use Meta::Utils::Opts::Opts qw();
use Crypt::GPG qw();
use Meta::Utils::Output qw();
use Meta::Info::Author qw();
use Meta::Utils::File::File qw();
use Meta::Development::Module qw();
my($opts)=Meta::Utils::Opts::Opts->new();
$opts->set_standard();
$opts->set_free_allo(0);
$opts->analyze(\@ARGV);
my($file)="xmlx/author/author.xml";
my($module)=Meta::Development::Module->new();
$module->set_name($file);
my($author)=Meta::Info::Author->new_modu($module);
my($gpg)=Crypt::GPG->new();
$gpg->gpgbin('/usr/bin/gpg');
$gpg->armor(1);
$gpg->secretkey($author->get_keyid());
$gpg->passphrase($author->get_passphrase());
my($content);
Meta::Utils::File::File::load("/etc/passwd",\$content);
my($enc)=$gpg->encrypt($content,$author->get_email());
Meta::Utils::Output::print("enc is [".$enc."]\n");
Meta::Utils::System::exit_ok();
__END__
=head1 NAME
demo_gpg.pl - demo Crypt::GPG functionality.
=head1 COPYRIGHT
Copyright (C) 2001, 2002 Mark Veltzer;
All rights reserved.
=head1 LICENSE
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
=head1 DETAILS
MANIFEST: demo_gpg.pl
PROJECT: meta
VERSION: 0.01
=head1 SYNOPSIS
gpg.pl [options]
=head1 DESCRIPTION
This script demos basic functionality of the Crypt::GPG module.
=head1 OPTIONS
=over 4
=item B<help> (type: bool, default: 0)
display help message
=item B<pod> (type: bool, default: 0)
display pod options snipplet
=item B<man> (type: bool, default: 0)
display manual page
=item B<quit> (type: bool, default: 0)
quit without doing anything
=item B<gtk> (type: bool, default: 0)
run a gtk ui to get the parameters
=item B<license> (type: bool, default: 0)
show license and exit
=item B<copyright> (type: bool, default: 0)
show copyright and exit
=item B<description> (type: bool, default: 0)
show description and exit
=item B<history> (type: bool, default: 0)
show history and exit
=back
no free arguments are allowed
=head1 BUGS
None.
=head1 AUTHOR
Name: Mark Veltzer
Email: mailto:veltzer@cpan.org
WWW: http://www.veltzer.org
CPAN id: VELTZER
( run in 0.575 second using v1.01-cache-2.11-cpan-df04353d9ac )