diff options
| author | gabrix73 <gabriel1@frozenstar.info> | 2026-05-31 02:48:33 +0200 |
|---|---|---|
| committer | gabrix73 <gabriel1@frozenstar.info> | 2026-05-31 02:48:33 +0200 |
| commit | ec39c027d2a59c1ae1ffa6e697d5cad57f69caf0 (patch) | |
| tree | 80e82eb2f835f446682f56b149cff9513384b096 /.gitignore | |
| download | yubisigner-cli-ec39c027d2a59c1ae1ffa6e697d5cad57f69caf0.tar.gz yubisigner-cli-ec39c027d2a59c1ae1ffa6e697d5cad57f69caf0.tar.xz yubisigner-cli-ec39c027d2a59c1ae1ffa6e697d5cad57f69caf0.zip | |
Extract core signing logic from Stefan Claas's yubisigner GUI
into standalone CLI tool for automation workflows.
Features:
- YubiKey PIV Ed25519 signing (slot 9c)
- 4 hash algorithms (RIPEMD-256, SHA-256, SM3, Streebog-256)
- Identical signature format to original yubisigner
- Command-line interface for scripting
All cryptographic functions are verbatim copies from yubisigner.go
with original line number references preserved in comments.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0079875 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Binaries +yubisigner-cli +*.exe +*.out + +# Test files +*.sig +test*.txt |
