feat: generate additional credential types and X.509 identities - #417
Merged
domenkozar merged 2 commits intoSep 3, 2026
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
secretspec | 723a52f | Commit Preview URL Branch Preview URL |
Sep 03 2026, 02:04 PM |
domenkozar
force-pushed
the
feat/openpgp-key-generation
branch
from
September 1, 2026 20:03
0e8da5d to
1b07016
Compare
domenkozar
force-pushed
the
feat/credential-generators
branch
from
September 3, 2026 02:33
5daf787 to
fb87177
Compare
domenkozar
merged commit Sep 3, 2026
7a8f26c
into
feat/openpgp-key-generation
32 of 33 checks passed
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
passphrase,mnemonic,wireguard_private_key,jwk_private_key,age_identity, andx509_identitygeneratorsextract.sourceso JSON/INI fields and X.509 artifacts can be derived from another declared secretMnemonics
type = "mnemonic"defaults to a checksum-valid 24-word English BIP-39 valuealgorithm = "bip39"is an explicit subtype for future extensibilityX.509 identities and extraction
type = "x509_identity"generates a self-signed P-256 X.509 v3 identity and stores its canonical binary PKCS#12 form throughencoding = "base64"server_authand 30 days, and caps validity at the current CA/Browser Forum 200-day subscriber-certificate maximumas_path = trueextract.sourceis the only new composition-like mechanism: the existingextract.formatselects both the component and representation. Named sources reuse the derived-secret dependency graph for order independence, scope closure, unknown-reference checks, and mixed cycle detection.Other security properties
Ed25519algorithm identifier; P-256 and RSA signing JWKs are also supportedVerification
cargo test --all: passed, including integration, compile/UI, and doctestsextract.sourceend-to-end test: passedgit diff --check: passedDependency
Stacked on #414, which adds the OpenPGP and SSH generation infrastructure this change extends.