TLS for name owners: add CA consolidation example and openssl verification checklist#758
Open
mstrofnone wants to merge 1 commit into
Open
TLS for name owners: add CA consolidation example and openssl verification checklist#758mstrofnone wants to merge 1 commit into
mstrofnone wants to merge 1 commit into
Conversation
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.
Two purely additive sections in
docs/name-owners/tls/index.md:## Example: Consolidating Two CAs Into One(placed between the existing "Renewing a Non-Subordinate CA Certificate" example and the "Can I Renew a TLS Certificate without Rotating Keys?" FAQ).Walks through the case where a zone ended up with two CA pins (e.g. one at the apex
map["*"].tlsand a second pinning a specific subdomain), and the operator wants to drop the second one without rotating the surviving CA's key (so the on-chain TLSA pin doesn't move).Five-step recipe: verify on-disk CA matches the on-chain pin via
openssl dgst -sha256of the SPKI, mint fresh end-entity certs from the surviving CA for each affected host, deploy them, then a singlename_updatethat removes the redundant TLSA. Calls out the ordering pitfall (deploy leaves before pushing the wallet update).### Verifying Your Deployment withopenssl` as a subsection of the existing Testing Your Website section.Four-step checklist for verifying a Namecoin TLS deployment from the command line:
Namecoin TLS Certificate.Both additions reference Hashed-mode TLSA shape (
[2, 1, 1, "<base64-of-SHA-256>"]) andncgencertinvocation style consistent with the rest of the page.No existing content is rewritten; no anchors or examples are renamed.