-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e3798a9
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.venv |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Solokey Config | ||
|
||
Shortcuts: | ||
|
||
- [solo1 cli](https://pypi.org/project/solo1/) (you'll need [fido2](https://pypi.org/project/fido2/0.9.3/) for setting a key pin) | ||
- [solo2 cli](https://github.com/solokeys/solo2-cli) | ||
|
||
## Getting Started | ||
|
||
Depending on the cli you're using, you'll need to install the appropriate package. | ||
|
||
### Solo1 | ||
|
||
Pre-requisites: | ||
|
||
- [install python3](https://www.python.org/downloads/) | ||
|
||
```bash | ||
python3 -m pip install -r requirements.txt | ||
``` | ||
|
||
### Solo2 | ||
|
||
Pre-requisites: | ||
|
||
- [install rust](https://www.rust-lang.org/tools/install) | ||
|
||
```bash | ||
cargo install solo2 | ||
``` | ||
|
||
## Usage | ||
|
||
This section will cover the basic usage of the solokey cli for both solo1 and solo2. | ||
|
||
Updating your key: | ||
|
||
```bash | ||
# Solo1 cli | ||
solo1 key update | ||
|
||
# Solo2 cli | ||
solo2 update | ||
``` | ||
|
||
Setting a key pin (*solo1 cli also works for solo2*): | ||
|
||
```bash | ||
# Solo1 cli | ||
solo1 key set-pin | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fido2==0.9.3 | ||
solo1==0.1.1 |