Merge pull request #22 from sdenel/patch-1

Update Readme.md
This commit is contained in:
Guy Halford-Thompson 2015-03-11 14:54:22 -07:00
commit ba0a67b926

View File

@ -48,7 +48,7 @@ var encoded = base32.encode(key);
// Google authenticator doesn't like equal signs
var encodedForGoogle = encoded.toString().replace(/=/g,'');
// to create a URI for a qr code (change totp to hotp is using hotp)
// to create a URI for a qr code (change totp to hotp if using hotp)
var uri = 'otpauth://totp/somelabel?secret=' + encodedForGoogle;
```