Crypt::Random::Source::Strong - Abstract base class for strong random data sources


Crypt-Random-Source documentation Contained in the Crypt-Random-Source distribution.

Index


Code Index:

NAME

Top

Crypt::Random::Source::Strong - Abstract base class for strong random data sources

SYNOPSIS

Top

    use Moose;

    extends qw(Crypt::Random::Source::Strong);

DESCRIPTION

Top

This is an abstract base class. There isn't much to describe.

METHODS

Top

is_strong

Returns true

AUTHOR

Top

  Yuval Kogman <nothingmuch@woobling.org>

COPYRIGHT AND LICENSE

Top


Crypt-Random-Source documentation Contained in the Crypt-Random-Source distribution.

package Crypt::Random::Source::Strong;
BEGIN {
  $Crypt::Random::Source::Strong::AUTHORITY = 'cpan:NUFFIN';
}
BEGIN {
  $Crypt::Random::Source::Strong::VERSION = '0.07';
}
# ABSTRACT: Abstract base class for strong random data sources

use Any::Moose;

sub is_strong { 1 }

1;


# ex: set sw=4 et:

__END__