NAME
Authen::U2F::Tester::RegisterResponse - U2F Tester Registration Response
VERSION
version 0.01
SYNOPSIS
use Authen::U2F::Tester;
my $tester = Authen::U2F::Tester->new(...);
my $res = $tester->register(...);
print $res->client_data;
print $res->registration_data;
# print the binary response in hex format
print unpack 'H*', $res->response;
DESCRIPTION
This class represents a successful response to a registration request.
METHODS
registration_data(): string
Get the registration data from the tester's register request, in Base64 URL encoding.
SEE ALSO
SOURCE
The development version is on github at https://github.com/mschout/perl-authen-u2f-tester and may be cloned from git://github.com/mschout/perl-authen-u2f-tester.git
BUGS
Please report any bugs or feature requests to bug-authen-u2f-tester@rt.cpan.org or through the web interface at: http://rt.cpan.org/Public/Dist/Display.html?Name=Authen-U2F-Tester
AUTHOR
Michael Schout <mschout@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Michael Schout.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.