Authen::U2F::Tester::Const(3pm) | User Contributed Perl Documentation | Authen::U2F::Tester::Const(3pm) |
Authen::U2F::Tester::Const - Constants for Authen::U2F::Tester
version 0.03
# import constants explicitly by name use Authen::U2F::Tester::Const qw(OK DEVICE_INELIGIBLE); # import all constants use Authen::U2F::Tester::Const ':all'; # example of a sign() request where the device has not been registered my $r = $tester->sign(...); if ($r->error_code == DEVICE_INELIGIBLE) { die "this device has not been registered"; }
This module provides error constants that are used by Authen::U2F::Tester.
This error code indicates a successful response.
This error indicates some other error happened.
This error code indicates the request cannot be processed.
This error code indicates the client configuration is not supported.
This error code indicates that the device is not eligible for this request. For a registration request, this may mean the device has already been registered. For a signing request, this may mean the device was never registered.
This error code indicates a timeout occurred waiting for the request to be satisfied.
The development version is on github at <http://https://github.com/mschout/perl-authen-u2f-tester> and may be cloned from <git://https://github.com/mschout/perl-authen-u2f-tester.git>
Please report any bugs or feature requests on the bugtracker website <https://github.com/mschout/perl-authen-u2f-tester/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.
Michael Schout <mschout@cpan.org>
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.
2018-04-12 | perl v5.26.2 |