NAME
   UUID::Tiny::Patch::UseMRS - Make UUID::Tiny use Math::Random::Secure's
   rand()

VERSION
   This document describes version 0.001 of UUID::Tiny::Patch::UseMRS (from
   Perl distribution UUID-Tiny-Patch-UseMRS), released on 2020-12-22.

SYNOPSIS
    use UUID::Tiny::Patch::UseMRS;
    say UUID::Tiny::create_uuid();

DESCRIPTION
   This module makes UUID::Tiny use "rand()" from Math::Random::Secure
   instead of the default "rand()" that comes with Perl. It is useful for
   creating cryptographically secure UUID's. On the other hand, as a note,
   this makes generate() around 3 times slower on my Dell XPS 13 laptop.

   After you "use" this module, use UUID::Tiny as usual.

HOMEPAGE
   Please visit the project's homepage at
   <https://metacpan.org/release/UUID-Tiny-Patch-UseMRS>.

SOURCE
   Source repository is at
   <https://github.com/perlancar/perl-UUID-Tiny-Patch-UseMRS>.

BUGS
   Please report any bugs or feature requests on the bugtracker website
   <https://github.com/perlancar/perl-UUID-Tiny-Patch-UseMRS/issues>

   When submitting a bug or request, please include a test-file or a patch
   to an existing test-file that illustrates the bug or desired feature.

SEE ALSO
   Math::Random::Secure

   UUID::Tiny

   UUID::Random and UUID::Random::Patch::UseMRS

AUTHOR
   perlancar <[email protected]>

COPYRIGHT AND LICENSE
   This software is copyright (c) 2020 by [email protected].

   This is free software; you can redistribute it and/or modify it under
   the same terms as the Perl 5 programming language system itself.