This repository was archived by the owner on Jun 25, 2024. It is now read-only.
Add support for external SSL providers. Also adds support for ZeroSSL from the beginning#2
Open
gkrizek wants to merge 8 commits intoencrypt-tls-keyfrom
Open
Add support for external SSL providers. Also adds support for ZeroSSL from the beginning#2gkrizek wants to merge 8 commits intoencrypt-tls-keyfrom
gkrizek wants to merge 8 commits intoencrypt-tls-keyfrom
Conversation
… its own package called lnencrypt The functions inside of the crypto.go file in chanbackup (like EncryptPayloadToWriter and DecryptPayloadFromReader) can be used by a lot of things outside of just the chanbackup package. We can't just reference them directly from the chanbackup package because it's likely that it would generate circular dependencies. Therefore we need to move these functions into their own package to be referenced by chanbackup and whatever new functionality that needs them
This commit adds support in lnd to encrypt the TLS private key on disk with the wallet's seed. This obviously causes issues when the wallet is locked. So for the WalletUnlocker RPC we generate ephemeral TLS certificates with the key stored in memory. This feature is enabled with the --tlsencryptkey flag.
… from the beginning
…ficate can't be issued. Also adds the ability to revoke the temporary certificates
…rse revoke response
Add support to CSR for multiple domains
021be66 to
c482099
Compare
c482099 to
2e21cc4
Compare
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Adding support for LND to provision SSL certificates from ZeroSSL.