PerlIO-via-CBC

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

use strict;
use Module::Build;

my $build = Module::Build->new(
    create_makefile_pl => 'traditional',
    license            => 'perl',
    module_name        => 'PerlIO::via::CBC',
    requires           => { 'Crypt::CBC' => '2.12', 'Crypt::DES' => '2.03' },
    reccomends         => {},
    create_readme      => 1,
    sign               => 0,
);
$build->create_build_script;

Changes  view on Meta::CPAN

	- pod fixed
	- sub config modified: now more efficient and resets predefined config

0.05  Mon Feb 14 01:59:00 2005
	- pod fixed

0.05  Mon Feb 14 01:59:00 2005
	- pod fixed

0.04  Mon Feb 14 01:59:00 2005
	- Crypt::DES added to PREREQ_PM

0.03  Fri Feb 11 20:40:00 2005
	- example fixed

0.02  Fri Feb 11 01:00:00 2005
	- pod added

0.01  Thu Feb 10 23:14:16 2005
	- original version; created by h2xs 1.23 with options
		-XA -n PerlIO::via::CBC

META.yml  view on Meta::CPAN

---
name: PerlIO-via-CBC
version: 0.08
author:
  - 'Sascha Kiefer, C<esskar@cpan.org>'
abstract: PerlIO layer for reading/writing CBC encrypted files
license: perl
requires:
  Crypt::CBC: 2.12
  Crypt::DES: 2.03
generated_by: Module::Build version 0.2801
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.2.html
  version: 1.2
provides:
  PerlIO::via::CBC:
    file: lib/PerlIO/via/CBC.pm
    version: 0.08
resources:
  license: http://dev.perl.org/licenses/

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker;
WriteMakefile
(
          'PL_FILES' => {},
          'INSTALLDIRS' => 'site',
          'NAME' => 'PerlIO::via::CBC',
          'EXE_FILES' => [],
          'VERSION_FROM' => 'lib/PerlIO/via/CBC.pm',
          'PREREQ_PM' => {
                           'Crypt::CBC' => '2.12',
                           'Crypt::DES' => '2.03'
                         }
        )
;

README  view on Meta::CPAN

    information.

OVERRIDEN METHODS
    This section lists the overriden PerlIO::via methods.

  FILL
  FLUSH
  PUSHED
REQUIRED MODULES
        Crypt::CBC' => 2.12
        Crypt::DES' => 2.03

SEE ALSO
    PerlIO::via

AUTHOR
    Sascha Kiefer, "esskar@cpan.org"

COPYRIGHT
    This program is free software, you can redistribute it and/or modify it
    under the same terms as Perl itself.

lib/PerlIO/via/CBC.pm  view on Meta::CPAN


=head2 FILL

=head2 FLUSH

=head2 PUSHED

=head1 REQUIRED MODULES

    Crypt::CBC' => 2.12
    Crypt::DES' => 2.03

=head1 SEE ALSO

L<PerlIO::via>

=head1 AUTHOR

Sascha Kiefer, C<esskar@cpan.org>

=head1 COPYRIGHT



( run in 0.266 second using v1.01-cache-2.11-cpan-9a3d99fc6dc )