Skip to content

Commit 60112ee

Browse files
authored
Fix typo (pquerna#67)
1 parent 4a83670 commit 60112ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Why One Time Passwords?
66

7-
One Time Passwords (OTPs) are an mechanism to improve security over passwords alone. When a Time-based OTP (TOTP) is stored on a user's phone, and combined with something the user knows (Password), you have an easy on-ramp to [Multi-factor authentication](http://en.wikipedia.org/wiki/Multi-factor_authentication) without adding a dependency on a SMS provider. This Password and TOTP combination is used by many popular websites including Google, Github, Facebook, Salesforce and many others.
7+
One Time Passwords (OTPs) are an mechanism to improve security over passwords alone. When a Time-based OTP (TOTP) is stored on a user's phone, and combined with something the user knows (Password), you have an easy on-ramp to [Multi-factor authentication](http://en.wikipedia.org/wiki/Multi-factor_authentication) without adding a dependency on a SMS provider. This Password and TOTP combination is used by many popular websites including Google, GitHub, Facebook, Salesforce and many others.
88

99
The `otp` library enables you to easily add TOTPs to your own application, increasing your user's security against mass-password breaches and malware.
1010

@@ -21,7 +21,7 @@ Because TOTP is standardized and widely deployed, there are many [mobile clients
2121

2222
### User Enrollment
2323

24-
For an example of a working enrollment work flow, [Github has documented theirs](https://help.github.com/articles/configuring-two-factor-authentication-via-a-totp-mobile-app/
24+
For an example of a working enrollment work flow, [GitHub has documented theirs](https://help.github.com/articles/configuring-two-factor-authentication-via-a-totp-mobile-app/
2525
), but the basics are:
2626

2727
1. Generate new TOTP Key for a User. `key,_ := totp.Generate(...)`.

0 commit comments

Comments
 (0)