Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cert expired checker #2

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open

Cert expired checker #2

wants to merge 7 commits into from

Commits on Mar 12, 2021

  1. lnencrypt: Moves the crypto functions in the chanbackup package into …

    …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
    gkrizek committed Mar 12, 2021
    Configuration menu
    Copy the full SHA
    0a9ba4b View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. config+lnd+cert: Add support in lnd for encrypting the TLS private key.

    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.
    gkrizek committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    61991bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5685da1 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2021

  1. Configuration menu
    Copy the full SHA
    e73c23e View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2021

  1. Add gocron dependencies

    orbitalturtle committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    1ef7b75 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2021

  1. Configuration menu
    Copy the full SHA
    0bbf1f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    303ec1e View commit details
    Browse the repository at this point in the history