-
According to:
I have 50 slots for resident keys. I'm assuming I need to use the
How are credentials stored on the key so it could be used for things like signing files?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I don't think we have any command in What You'd then pass that credential ID to However, signing files is not part of the official firmware on secure keys (you'd get a |
Beta Was this translation helpful? Give feedback.
-
Hi Please install udev rules and run If I verify it: Please install udev rules and run root@3a-rpi01:/home/pi# solo version Please install udev rules and run Does this not work with a standard key? best regards chris |
Beta Was this translation helpful? Give feedback.
I don't think we have any command in
solo
that generates a resident key, which is whatsolo key credential info
outputs.What
make-credential
does is create a non-resident key, meaning the credential ID (the hex-output you see) encodes everything the token needs to reconstruct the key. This is the original idea behind U2F (use the "server" to store the key, by sending it an encrypted version as credential ID). So far, so good!You'd then pass that credential ID to
solo key sign-file
.However, signing files is not part of the official firmware on secure keys (you'd get a
CTAP error: 0x01 - INVALID_COMMAND
). This is implemented in solokeys/solo1#397 which I don't think we ever merged.