Acme-DRM

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
name: Acme-DRM
version: 0.03
author:
  - 'Brett T. Warden, C<< <bwarden-cpan@wgz.org> >>'
abstract: 'Library providing cryptographic capabilities especially suited for Digital Rights Management. Protects against Pirates.  May increase global warming. Note: Not guaranteed to protect against Pirates or increase global warming.'
license: perl
resources:
  license: http://dev.perl.org/licenses/
provides:
  Acme::DRM:
    file: lib/Acme/DRM.pm
    version: 0.03
generated_by: Module::Build version 0.28
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.2.html

README  view on Meta::CPAN

NAME
    Acme::DRM - Library providing cryptographic capabilities especially
    suited for Digital Rights Management. Protects against Pirates. May
    increase global warming. Note: Not guaranteed to protect against Pirates
    or increase global warming.

VERSION
    Version 0.03

SYNOPSIS
     use Acme::DRM qw(secureXOR doubleROT128);
     my $intellectualProperty = 'One-hit Wonder Music';

     # Encrypt your IP to plug the digital hole
     my $encryptedContent = secureXOR($intellectualProperty);

lib/Acme/DRM.pm  view on Meta::CPAN

package Acme::DRM;

use warnings;
use strict;

use vars qw(@ISA @EXPORT_OK $VERSION);

=head1 NAME

Acme::DRM - Library providing cryptographic capabilities especially suited for Digital Rights Management. Protects against Pirates.  May increase global warming. Note: Not guaranteed to protect against Pirates or increase global warming.

=head1 VERSION

Version 0.03

=cut

$VERSION = '0.03';

=head1 SYNOPSIS



( run in 0.848 second using v1.01-cache-2.11-cpan-49f99fa48dc )