-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Yubikey-based challenge for tech port unlocking (#274)
See https://rfd.shared.oxide.computer/rfd/492#_sketch_of_an_unlock_policy for the backstory here. This adds a new kind of `UnlockChallenge`, which requires that the caller generate an SSH signature (https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.sshsig) of a particular blob of data, using trusted keys which are baked into the SP's firmware.
- Loading branch information
Showing
8 changed files
with
748 additions
and
43 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ mod v11; | |
mod v12; | ||
mod v13; | ||
mod v14; | ||
mod v15; | ||
|
||
pub fn assert_serialized( | ||
out: &mut [u8], | ||
|
Oops, something went wrong.