Subject: | Spelling errors |
Hello,
here are some spelling errors:
--- a/lib/Crypt/U2F/Server.pm
+++ b/lib/Crypt/U2F/Server.pm
@@ -71,7 +71,7 @@ __END__
=head1 NAME
-Crypt::U2F::Server - Low level wrapper around the U2F two factor athentication C library (server side)
+Crypt::U2F::Server - Low level wrapper around the U2F two factor authentication C library (server side)
=head1 SYNOPSIS
@@ -90,7 +90,7 @@ of L<Crypt::U2F::Server> to use.
=head1 INSTALLATION
-This module requires the Yubico u2f-server shared libary installed, please see the official
+This module requires the Yubico u2f-server shared library installed, please see the official
project page at L<https://developers.yubico.com/libu2f-server/> on how to do that.
=head1 NO MULTITHREADING / MULTI INSTANCES
--- a/lib/Crypt/U2F/Server/Simple.pm
+++ b/lib/Crypt/U2F/Server/Simple.pm
@@ -263,13 +263,13 @@ Crypt::U2F::Server::Simple - Register an
# Generate a registration request
my $registerRequest = $crypter->registrationChallenge();
- # Give $registerRequest to client, recieve $registrationData from client
+ # Give $registerRequest to client, receive $registrationData from client
my ($keyHandle, $userKey) = $crypter->registrationVerify($registrationData)
# Generate an authentication request (using the previously generated key handle and user key)
my $authrequest = $crypter->authenticationChallenge();
- # Send $authrequest to client, recieve $authSignature
+ # Send $authrequest to client, receive $authSignature
my $authok = $crypter->authenticationVerify($authSignature);
=head1 DESCRIPTION
@@ -281,13 +281,13 @@ of this perl module. To clarify You can
in another program on another server. But, as far as it is currently implemented, you must run both registration
steps in the same instance of this module, the same goes for authentication. Needs more testing, really.
-A succesfull registration of a key yields to two scalars, a key handle and a public key. It is B<your>
+A successfull registration of a key yields to two scalars, a key handle and a public key. It is B<your>
responsibility to keep them safe somewhere and reload them into this module whenever you want to do
authentication.
=head1 INSTALLATION
-This module requires the Yubico u2f-server shared libary installed, please see the official
+This module requires the Yubico u2f-server shared library installed, please see the official
project page at L<https://developers.yubico.com/libu2f-server/> on how to do that.
=head1 NO MULTITHREADING
@@ -374,8 +374,8 @@ module!
=head2 authenticationChallenge()
-This function generates an authentification challenge. To do that, it needs keyHandle and publicKey, since this
-is key dependend.
+This function generates an authentication challenge. To do that, it needs keyHandle and publicKey, since this
+is key dependent.
my $challenge = $auth->authenticationChallenge();