From 8d3111b9af22c6c9d72e1b2fbc434d406560d707 Mon Sep 17 00:00:00 2001 From: Rob Janssen Date: Tue, 17 Mar 2015 16:28:51 +0100 Subject: [PATCH] * Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8aa7018..ce55022 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ $result = $tfa->verifyCode($_SESSION['secret'], $_POST['verification']); The second parameter `$time` allows you to check a code for a specific point in time. This parameter has no real practical use but can be handy for unittesting etc. The default value, `null`, means: use the current time. -Ok, so now the code has been verified and found to be correct. Now we can store the `$secret` with our user in our database (or elsewhere) and whenever the user begins a new session we ask for a code generated by the authentication app of their choice. All we need to to is call `verifyCode()` again with the shared secret and the entered code and we know if the user is legit or not. +Ok, so now the code has been verified and found to be correct. Now we can store the `$secret` with our user in our database (or elsewhere) and whenever the user begins a new session we ask for a code generated by the authentication app of their choice. All we need to do is call `verifyCode()` again with the shared secret and the entered code and we know if the user is legit or not. Simple as 1-2-3.