-
keyfork v0.3.0 Stable
released this
2025-02-26 04:24:08 +00:00 | 2 commits to main since this releaseThe Wizard is Dead. Long Live the Mnemonic Generator.
The
keyfork wizard
subcommand was previously used to perform complex
operations that couldn't be performed with justkeyfork mnemonic generate
.
Since we've introduced complexity intokeyfork mnemonic generate
, it only
makes sense to consolidate all mnemonic generation complexity into one
location. Therefore,keyfork mnemonic generate
should be a one-stop shop from
going to zero entropy to 256 bits of entropy. :)The following operations are added:
keyfork mnemonic generate --derive=<derivation>
: Allow for the immediate
derivation of a key. The value passed will be parsed directly as though
keyfork derive
were run. For example,
keyfork mnemonic generate --derive='openpgp "Ryan Heywood"'
generates an
OpenPGP Transferable Secret Key that is nearly-identical to one generated by
keyfork derive openpgp "Ryan Heywood"
, with the only exception being the
time the signatures were created.keyfork mnemonic generate --encrypt-to <keyring>
: Encrypt the mnemonic to
an existing OpenPGP keyring or certificate.keyfork mnemonic generate --shard-to <shardfile>
: Shard the mnemonic to
an existing Keyfork Shardfile.keyfork mnemonic generate --shard <config>
: Shard the mnemonic to an
existing set of OpenPGP certificates.keyfork mnemonic generate --encrypt-to-self <file>
: Encrypt the mnemonic to
an OpenPGP certificate generated in--derive
or--provision
keyfork mnemonic generate --shard-to-self <file>,<config>
: Shard the
mnemonic to freshly generated certificates, provisioned to OpenPGP
smartcards. This option replaces the traditional Keyfork Wizard, which has
been removed.keyfork mnemonic generate --provision
: Provision a key derived from the new
mnemonic, which can be used for--encrypt-to-self
, or to just bypass
needing to load the mnemonic to provision with it.
Along with these changes, some other minor additions were added:
- QR code retries in the Shard mechanism are now implemented.
keyfork-qrcode
now prefers libzbar and can compile with both.keyfork-prompt
should now work better on AirgapOS and Linux terminals.
76ca4b0 Release keyfork v0.3.0 53665ca keyfork: the wizard is dead! long live the mnemonic generator! a1c3d52 keyfork: restructure wizard shard key generation 674e2e9 keyfork: restructure CLI commands to act more like the other commands 723194f keyfork mnemonic generate: userid equivalency, rename provisioner cert_output to output db19b30 keyfork mnemonic generate: feedback improvements
Downloads