NAME

Data::UUID::Base64URLSafe - URL-safe UUIDs

SYNOPSIS

use Data::UUID::Base64URLSafe;
my $ug = Data::UUID::Base64URLSafe->new;
my $uuid = $ug->create_b64_urlsafe;

DESCRIPTION

Data::UUID creates wonderful Globally/Universally Unique Identifiers (GUIDs/UUIDs). This module is a subclass of that module which adds a method to get a URL-safe Base64-encoded version of the UUID using MIME::Base64::URLSafe. What that means is that you can get a 22-character UUID string which you can use safely in URLs.

METHODS

new

The constructor:

my $ug = Data::UUID::Base64URLSafe->new;

create_b64_urlsafe

Create a URL-safe Base64-encoded UUID:

my $uuid = $ug->create_b64_urlsafe;

create_from_name_b64_urlsafe

Creates a URL-safe Base64 encoded UUID with the namespace and data specified (See the Data::UUID docs on create_from_name

from_b64_urlsafe

my $uuid2 = $ug−>create_from_name_b64_urlsafe(<namespace>, <name>);

to_b64_urlsafe

Convert a binary UUID to a URL-safe Base64 encoded UUID

from_b64_urlsafe

Convert a Base 64-encoded URL-safe UUID to its canonical binary representation

AUTHOR

Leon Brocard, <acme@astray.com>

COPYRIGHT

Copyright (C) 2008, Leon Brocard

LICENSE

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 82:

Non-ASCII character seen before =encoding in '$ug−>create_from_name_b64_urlsafe(<namespace>,'. Assuming UTF-8