The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

UUID::Random::PERLANCAR - Another implementation of UUID::Random

VERSION

This document describes version 0.005 of UUID::Random::PERLANCAR (from Perl distribution UUID-Random-PERLANCAR), released on 2021-01-20.

SYNOPSIS

Use like you would UUID::Random:

 use UUID::Random::PERLANCAR;
 say UUID::Random::PERLANCAR::generate();

DESCRIPTION

This is another implementation of UUID::Random with improved speed and an extra function "generate_rfc".

FUNCTIONS

generate

Generate a single v4 UUID string in the formatted 32 hexadecimal digits:

 xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

Note that this module does not produce RFC 4122-compliant v4 (random) UUIDs (no encoding of variant and version information into the UUID). See "generate_rfc" for UUIDs that comply to RFC 4122.

generate_rfc

Generate RFC-compliant a single v4 UUID string in the form of:

 xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx

where x is any hexadecimal digits ([0-9a-f]), M is 4, and N is either 8, 9, a, or b (1000, 1001, 1010, or 1011 in binary).

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/UUID-Random-PERLANCAR.

SOURCE

Source repository is at https://github.com/perlancar/perl-UUID-Random-PERLANCAR.

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/perlancar/perl-UUID-Random-PERLANCAR/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

UUID::Random

Benchmark in Acme::CPANModules::UUID

Crypt::Misc

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2021 by perlancar@cpan.org.

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