Earlier quoted context omitted.
You had me until "backups are encrypted with PBKDF2". PBKDF2 is not encryption, it is a Key Derivation Function (it says so right in the name - KDF). Given that one of the developers is claiming that they are "encrypting" using PBKDF2 (which is in the same category as claiming that they are encrypting using MD5!), dissuades me from ever using it or recommending it.
I may be totally wrong, but isn't PBKDF2 useful exactly as a way to generate an encryption key from a password?
Warning: Google Authenticator upgrade loses all accounts
51–60 of 176 posts
Re: Warning: Google Authenticator upgrade loses all accounts
#52Earlier quoted context omitted.
You had me until "backups are encrypted with PBKDF2". PBKDF2 is not encryption, it is a Key Derivation Function (it says so right in the name - KDF). Given that one of the developers is claiming that they are "encrypting" using PBKDF2 (which is in the same category as claiming that they are encrypting using MD5!), dissuades me from ever using it or recommending it.
I may be totally wrong, but isn't PBKDF2 useful exactly as a way to generate an encryption key from a password?
Re: Warning: Google Authenticator upgrade loses all accounts
#53When I add sites to Authenticator, I take a screenshot of the QR code and tuck it away in an encrypted document (OneNote for the record, which uses uses AES to encrypt).
Re: Warning: Google Authenticator upgrade loses all accounts
#54Re: Warning: Google Authenticator upgrade loses all accounts
#55When I add sites to Authenticator, I take a screenshot of the QR code and tuck it away in an encrypted document (OneNote for the record, which uses uses AES to encrypt).
Have you tested this? Are the barcodes not time pertinent?
Re: Warning: Google Authenticator upgrade loses all accounts
#56At my last place of work I built an SMS system to be used as the second factor in the intranet login. I _could_ have used a 3rd party 2FA, but the most _logical_ reason to have our own system was ... well.. we didn't want to rely on anyone except ourselves.
Didn't take me long and the most difficult part was finding enough USB-connected phones to be used as SMS senders.
Guess what? The system still works today, why Google is broken.
Re: Warning: Google Authenticator upgrade loses all accounts
#57When I add sites to Authenticator, I take a screenshot of the QR code and tuck it away in an encrypted document (OneNote for the record, which uses uses AES to encrypt).
Have you tested this? Are the barcodes not time pertinent?
The QR codes simply divulge a URI with the secret key for generating tokens. They look like:
otpauth://totp/[keyname]?secret=[secretkey]
The secret key is used in the app in conjunction with a moving factor (usually 30-second intervals of time) to generate a numerical hash of sorts for that interval of time, which is then truncated to 6 characters.The QR code itself doesn't have any sort of time limit on them; they only serve to transmit the secret key.
Re: Warning: Google Authenticator upgrade loses all accounts
#58This is the sort of "nightmare scenario" I'm afraid of, and why I'm still not using 2FA. I'd rather risk having only a weaker password, than risking losing my accounts for good. You can't get back into your accounts if something like this happens, right?
Re: Warning: Google Authenticator upgrade loses all accounts
#59What an absolutely awesome time for iTunes Connect to be down for maintenance.
Re: Warning: Google Authenticator upgrade loses all accounts
#60Earlier quoted context omitted.
Have you tested this? Are the barcodes not time pertinent?
(I've studied two-factor authentication using HOTP and TOTP, and built a node.js implementation of it.) The QR codes simply divulge a URI with the secret key for generating tokens. They look like: otpauth://totp/[keyname]?secret=[secretkey] The secret key is used in the app in conjunction with a moving factor (usually 30-second intervals of time) to generate a numerical hash of sorts for that interval of time, which…
I haven't actually tested it though. :-/