Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new site with questions about Solo. #413

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/solo/questions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#Questions
## Pin Support
**1. Does SoloKey implement PIN-support?**

Yes


**2. Is the Pin stored and checked inside the SoloKey?**

The pin is stored on the key not in plain text. Only the pin hash is stored. For more information see:

- [Fidoallicace specification: setting new pin][fido2_new_pin]
- [Fidoallicance specification: authentificator client pin][fido2_client_pin].


**3. What happens if someone enters a faulty pin many times?**

After **M** wrong PINs, you have to powercycle.<br>
After **N** wrong PINs, you have to fully reset the key to use it again.<br>
Constants can be find in repository under [solo/fido2/ctap.h][ctap_constants]

Actually the constants are:

- M (PIN_BOOT_ATTEMPTS): 3 times before reboot
- N (PIN_LOCKOUT_ATTEMPTS): 8 times before fully reset









[//]: # "links"
[ctap_constants]: https://github.com/solokeys/solo/blob/master/fido2/ctap.h
[fido2_new_pin]: https://fidoalliance.org/specs/fido-v2.0-ps-20190130/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html#settingNewPin)
[fido2_client_pin]: https://fidoalliance.org/specs/fido-v2.0-ps-20190130/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html#authenticatorClientPIN
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ nav:
- Bootloader mode: solo/bootloader-mode.md
- Customization: solo/customization.md
- Solo Extras: solo/solo-extras.md
- Questions about Solo: solo/questions.md
- Application Ideas: solo/application-ideas.md
- Running on Nucleo32 board: solo/nucleo32-board.md
- Signed update process: solo/signed-updates.md
Expand Down