• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/UUID/Random/Patch/H24-Jan-2021-827

t/H24-Jan-2021-11773

ChangesH A D24-Jan-2021335 188

LICENSEH A D24-Jan-202118 KiB380292

MANIFESTH A D24-Jan-2021275 1615

META.jsonH A D24-Jan-202120.3 KiB585583

META.ymlH A D24-Jan-202113.6 KiB437436

Makefile.PLH A D24-Jan-20211.2 KiB5543

READMEH A D24-Jan-20211.7 KiB5439

dist.iniH A D24-Jan-2021157 138

weaver.iniH A D24-Jan-202121 21

README

1NAME
2    UUID::Random::Patch::UseMRS - Make UUID::Random use
3    Math::Random::Secure's rand()
4
5VERSION
6    This document describes version 0.030 of UUID::Random::Patch::UseMRS
7    (from Perl distribution UUID-Random-Patch-UseMRS), released on
8    2021-01-24.
9
10SYNOPSIS
11     use UUID::Random::Patch::UseMRS;
12     say UUID::Random::generate();
13
14DESCRIPTION
15    This module makes UUID::Random use "rand()" from Math::Random::Secure
16    instead of the default "rand()" that comes with Perl. It is useful for
17    creating cryptographically secure UUID's. On the other hand, as a note,
18    this makes generate() around 20 times slower on my PC.
19
20    After you "use" this module, use UUID::Random as usual.
21
22HOMEPAGE
23    Please visit the project's homepage at
24    <https://metacpan.org/release/UUID-Random-Patch-UseMRS>.
25
26SOURCE
27    Source repository is at
28    <https://github.com/perlancar/perl-UUID-Random-Patch-UseMRS>.
29
30BUGS
31    Please report any bugs or feature requests on the bugtracker website
32    <https://github.com/perlancar/perl-UUID-Random-Patch-UseMRS/issues>
33
34    When submitting a bug or request, please include a test-file or a patch
35    to an existing test-file that illustrates the bug or desired feature.
36
37SEE ALSO
38    Math::Random::Secure, UUID::Random.
39
40    Other ways to generate cryptographically secure random (v4) UUIDs:
41    Crypt::Misc, UUID::Random::Secure, UUID::Tiny::Patch::UseMRS and
42    UUID::Tiny. Acme::CPANModules::UUID contains reviews and benchmarks of
43    these.
44
45AUTHOR
46    perlancar <perlancar@cpan.org>
47
48COPYRIGHT AND LICENSE
49    This software is copyright (c) 2021, 2012 by perlancar@cpan.org.
50
51    This is free software; you can redistribute it and/or modify it under
52    the same terms as the Perl 5 programming language system itself.
53
54