Authen-U2F

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.003     2017-10-04 10:14:15+11:00 Australia/Melbourne
 - Support for Perl 5.8 (thanks Michael McClimon)
 - Use namespace::autoclean instead of namespace::sweep

0.002     2016-06-27 22:42:56+10:00 Australia/Melbourne
 - Version dep on MIME::Base64 for url methods

0.001     2016-06-20 11:40:20-04:00 America/New_York
 - First release

META.json  view on Meta::CPAN

            "Crypt::PK::ECC" : "0",
            "CryptX" : "0.034",
            "Digest::SHA" : "0",
            "Exporter::Tiny" : "0",
            "JSON" : "0",
            "MIME::Base64" : "3.11",
            "Math::Random::Secure" : "0",
            "Try::Tiny" : "0",
            "Type::Params" : "0",
            "Types::Standard" : "0",
            "namespace::autoclean" : "0",
            "parent" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : "0"
         }
      }

META.yml  view on Meta::CPAN

  Crypt::PK::ECC: '0'
  CryptX: '0.034'
  Digest::SHA: '0'
  Exporter::Tiny: '0'
  JSON: '0'
  MIME::Base64: '3.11'
  Math::Random::Secure: '0'
  Try::Tiny: '0'
  Type::Params: '0'
  Types::Standard: '0'
  namespace::autoclean: '0'
  parent: '0'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/robn/Authen-U2F/issues
  homepage: https://github.com/robn/Authen-U2F
  repository: https://github.com/robn/Authen-U2F.git
version: '0.003'
x_Dist_Zilla:
  perl:

Makefile.PL  view on Meta::CPAN

    "Crypt::PK::ECC" => 0,
    "CryptX" => "0.034",
    "Digest::SHA" => 0,
    "Exporter::Tiny" => 0,
    "JSON" => 0,
    "MIME::Base64" => "3.11",
    "Math::Random::Secure" => 0,
    "Try::Tiny" => 0,
    "Type::Params" => 0,
    "Types::Standard" => 0,
    "namespace::autoclean" => 0,
    "parent" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0
  },
  "VERSION" => "0.003",
  "test" => {
    "TESTS" => "t/*.t"

Makefile.PL  view on Meta::CPAN

  "CryptX" => "0.034",
  "Digest::SHA" => 0,
  "Exporter::Tiny" => 0,
  "JSON" => 0,
  "MIME::Base64" => "3.11",
  "Math::Random::Secure" => 0,
  "Test::More" => 0,
  "Try::Tiny" => 0,
  "Type::Params" => 0,
  "Types::Standard" => 0,
  "namespace::autoclean" => 0,
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

lib/Authen/U2F.pm  view on Meta::CPAN

package Authen::U2F;
$Authen::U2F::VERSION = '0.003';
# ABSTRACT: FIDO U2F library

use warnings;
use strict;

use namespace::autoclean;

use Types::Standard -types, qw(slurpy);
use Type::Params qw(compile);
use Try::Tiny;
use Carp qw(croak);

use Math::Random::Secure qw(irand);
use MIME::Base64 3.11 qw(encode_base64url decode_base64url);
use Crypt::OpenSSL::X509 1.806;
use CryptX 0.034;



( run in 0.267 second using v1.01-cache-2.11-cpan-4d50c553e7e )