Advertisement
TVT618

U2F Zero - A Secure and Open Source U2F Token

Jun 24th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. About U2F Zero
  2. U2F Zero is an open source U2F token for 2 factor authentication. It is implemented securely. It works with Google accounts, Github, Duo, and anything else supporting U2F. The latest version uses key derivation and has no limit on registrations.
  3.  
  4. You can easily build your own. You just need to order the 8 SMT parts, $1.13-$3.5 per PCB, and programmer. It ends up being $35 for programmer and ~$5/board. The token should be durable enough to survive on a key chain for years, even after going through the wash.
  5.  
  6. Check out the wiki for more on how to build your own.
  7.  
  8. Redesign / FIDO 2
  9. FIDO 2 protocol is replacing U2F. It has more flexibility and support for password-less login. A new open source FIDO 2 token is being planned (with support for USB, Bluetooth, and NFC). Discussion for hardware design and usage is happening here, feel free to chip in.
  10.  
  11. Security Overview
  12. The security level is about the same as a modern car key. Any secret information cannot be read or duplicated. A true random number generator is used to create unpredictable keys.
  13.  
  14. However, side channel leakage is an unsolved problem in industry and academia. So for well equipped adversaries that can make targetted attacks and get physical access, secret information leakage is possible. Any other hardware token that claims it's "impenetrable" or otherwise totally secure is still vulnerable to physical side channels and it's important to acknowledge. However, most people don't worry about targeted attacks from well equipped adversaries.
  15.  
  16.  
  17. For more information about U2F Zero's secure implementation and the problem of side channels, check out the wiki.
  18.  
  19. Why it's Secure?
  20. * Hardware Random Number Generator:
  21. A TRNG is used on chip to ensure high entropy keys get generated during registration.
  22. * Write Only Keys: Keys are generated on an off chip peripheral and live in write only memory. Nothing can read them except the peripheral itself.
  23. * Tamper Resistance: Atmel secure chip includes temperature and voltage tampering sensors.
  24. * Open Source: Because the source is open, there is confidence there are no backdoors in the source code.
  25.  
  26. How to Support?: Support this project by purchasing or sharing U2F Zero on Amazon.
  27.  
  28. License: Everything is open source and licensed under the Simplified BSD License.
  29.  
  30. Visit U2F Zero's website: https://u2fzero.com/
  31. Buy a U2F Zero: https://www.amazon.com/U2F-Zero/dp/B01L9DUPK6
  32. Download the source code of U2F Zero: https://github.com/conorpp/u2f-zero
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement