mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-02 19:44:03 +02:00
lnd: Add ability to encrypt TLS key on disk
This commit is contained in:
442
tls_manager.go
442
tls_manager.go
@ -1,34 +1,88 @@
|
||||
package lnd
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"crypto/tls"
|
||||
"crypto/x509"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"net/http"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/lightningnetwork/lnd/cert"
|
||||
"github.com/lightningnetwork/lnd/keychain"
|
||||
"github.com/lightningnetwork/lnd/lncfg"
|
||||
"github.com/lightningnetwork/lnd/lnencrypt"
|
||||
"github.com/lightningnetwork/lnd/lnrpc"
|
||||
"golang.org/x/crypto/acme/autocert"
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/grpc/credentials"
|
||||
)
|
||||
|
||||
const (
|
||||
// modifyFilePermissons is the file permission used for writing
|
||||
// encrypted tls files.
|
||||
modifyFilePermissions = 0600
|
||||
|
||||
// validityHours is the number of hours the ephemeral tls certificate
|
||||
// will be valid, if encrypting tls certificates is turned on.
|
||||
validityHours = 24
|
||||
)
|
||||
|
||||
var (
|
||||
// privateKeyPrefix is the prefix to a plaintext TLS key.
|
||||
privateKeyPrefix = []byte("-----BEGIN EC PRIVATE KEY-----")
|
||||
|
||||
// letsEncryptTimeout sets a timeout for the Lets Encrypt server.
|
||||
letsEncryptTimeout = 5 * time.Second
|
||||
)
|
||||
|
||||
// TLSManager generates/renews a TLS certificate when needed and returns the
|
||||
// certificate configuration options needed for gRPC and REST.
|
||||
// TLSManagerCfg houses a set of values and methods that is passed to the
|
||||
// TLSManager for it to properly manage LND's TLS options.
|
||||
type TLSManagerCfg struct {
|
||||
TLSCertPath string
|
||||
TLSKeyPath string
|
||||
TLSEncryptKey bool
|
||||
TLSExtraIPs []string
|
||||
TLSExtraDomains []string
|
||||
TLSAutoRefresh bool
|
||||
TLSDisableAutofill bool
|
||||
TLSCertDuration time.Duration
|
||||
|
||||
LetsEncryptDir string
|
||||
LetsEncryptDomain string
|
||||
LetsEncryptListen string
|
||||
|
||||
DisableRestTLS bool
|
||||
}
|
||||
|
||||
// TLSManager generates/renews a TLS cert/key pair when needed. When required,
|
||||
// it encrypts the TLS key. It also returns the certificate configuration
|
||||
// options needed for gRPC and REST.
|
||||
type TLSManager struct {
|
||||
cfg *Config
|
||||
cfg *TLSManagerCfg
|
||||
|
||||
// tlsReloader is able to reload the certificate with the
|
||||
// GetCertificate function. In getConfig, tlsCfg.GetCertificate is
|
||||
// pointed towards t.tlsReloader.GetCertificateFunc(). When
|
||||
// TLSReloader's AttemptReload is called, the cert that tlsReloader
|
||||
// holds is changed, in turn changing the cert data
|
||||
// tlsCfg.GetCertificate will return.
|
||||
tlsReloader *cert.TLSReloader
|
||||
|
||||
// These options are only used if we're currently using an ephemeral
|
||||
// TLS certificate, used when we're encrypting the TLS key.
|
||||
ephemeralKey []byte
|
||||
ephemeralCert []byte
|
||||
ephemeralCertPath string
|
||||
}
|
||||
|
||||
// NewTLSManager returns a reference to a new TLSManager.
|
||||
func NewTLSManager(cfg *Config) *TLSManager {
|
||||
func NewTLSManager(cfg *TLSManagerCfg) *TLSManager {
|
||||
return &TLSManager{
|
||||
cfg: cfg,
|
||||
}
|
||||
@ -37,20 +91,54 @@ func NewTLSManager(cfg *Config) *TLSManager {
|
||||
// getConfig returns a TLS configuration for the gRPC server and credentials
|
||||
// and a proxy destination for the REST reverse proxy.
|
||||
func (t *TLSManager) getConfig() ([]grpc.ServerOption, []grpc.DialOption,
|
||||
func(net.Addr) (net.Listener, error), func(), error) {
|
||||
func(net.Addr) (net.Listener, error), error) {
|
||||
|
||||
tlsCfg, cleanUp, err := t.generateOrRenewCert()
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, err
|
||||
var (
|
||||
keyBytes, certBytes []byte
|
||||
err error
|
||||
)
|
||||
if t.ephemeralKey != nil {
|
||||
keyBytes = t.ephemeralKey
|
||||
certBytes = t.ephemeralCert
|
||||
} else {
|
||||
certBytes, keyBytes, err = cert.GetCertBytesFromPath(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, nil, nil, err
|
||||
}
|
||||
}
|
||||
|
||||
// Now that we know that we have a ceritificate, let's generate the
|
||||
certData, _, err := cert.LoadCertFromBytes(certBytes, keyBytes)
|
||||
if err != nil {
|
||||
return nil, nil, nil, err
|
||||
}
|
||||
|
||||
if t.tlsReloader == nil {
|
||||
tlsr, err := cert.NewTLSReloader(certBytes, keyBytes)
|
||||
if err != nil {
|
||||
return nil, nil, nil, err
|
||||
}
|
||||
t.tlsReloader = tlsr
|
||||
}
|
||||
|
||||
tlsCfg := cert.TLSConfFromCert(certData)
|
||||
tlsCfg.GetCertificate = t.tlsReloader.GetCertificateFunc()
|
||||
|
||||
// If we're using the ephemeral certificate, we need to use the
|
||||
// ephemeral cert path.
|
||||
certPath := t.cfg.TLSCertPath
|
||||
if t.ephemeralCertPath != "" {
|
||||
certPath = t.ephemeralCertPath
|
||||
}
|
||||
|
||||
// Now that we know that we have a certificate, let's generate the
|
||||
// required config options.
|
||||
restCreds, err := credentials.NewClientTLSFromFile(
|
||||
t.cfg.TLSCertPath, "",
|
||||
certPath, "",
|
||||
)
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, err
|
||||
return nil, nil, nil, err
|
||||
}
|
||||
|
||||
serverCreds := credentials.NewTLS(tlsCfg)
|
||||
@ -80,14 +168,15 @@ func (t *TLSManager) getConfig() ([]grpc.ServerOption, []grpc.DialOption,
|
||||
return lncfg.TLSListenOnAddress(addr, tlsCfg)
|
||||
}
|
||||
|
||||
return serverOpts, restDialOpts, restListen, cleanUp, nil
|
||||
return serverOpts, restDialOpts, restListen, nil
|
||||
}
|
||||
|
||||
// generateOrRenewCert generates a new TLS certificate if we're not using one
|
||||
// yet or renews it if it's outdated.
|
||||
func (t *TLSManager) generateOrRenewCert() (*tls.Config, func(), error) {
|
||||
// Genereate a TLS pair if we don't have one yet.
|
||||
err := t.createTLSPair()
|
||||
// Generete a TLS pair if we don't have one yet.
|
||||
var emptyKeyRing keychain.SecretKeyRing
|
||||
err := t.generateCertPair(emptyKeyRing)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
@ -101,7 +190,7 @@ func (t *TLSManager) generateOrRenewCert() (*tls.Config, func(), error) {
|
||||
|
||||
// Check to see if the certificate needs to be renewed. If it does, we
|
||||
// return the newly generated certificate data instead.
|
||||
reloadedCertData, err := t.certMaintenance(parsedCert)
|
||||
reloadedCertData, err := t.maintainCert(parsedCert)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
@ -110,38 +199,134 @@ func (t *TLSManager) generateOrRenewCert() (*tls.Config, func(), error) {
|
||||
}
|
||||
|
||||
tlsCfg := cert.TLSConfFromCert(certData)
|
||||
|
||||
cleanUp := t.setUpLetsEncrypt(&certData, tlsCfg)
|
||||
|
||||
return tlsCfg, cleanUp, nil
|
||||
}
|
||||
|
||||
// createTLSPair creates and writes a TLS pair to disk if the pair doesn't
|
||||
// exist yet. If the TLSEncryptKey setting is on, and a plaintext key is
|
||||
// already written to disk, this function overwrites the plaintext key with
|
||||
// generateCertPair creates and writes a TLS pair to disk if the pair
|
||||
// doesn't exist yet. If the TLSEncryptKey setting is on, and a plaintext key
|
||||
// is already written to disk, this function overwrites the plaintext key with
|
||||
// the encrypted form.
|
||||
func (t *TLSManager) createTLSPair() error {
|
||||
func (t *TLSManager) generateCertPair(keyRing keychain.SecretKeyRing) error {
|
||||
// Ensure we create TLS key and certificate if they don't exist.
|
||||
if fileExists(t.cfg.TLSCertPath) || fileExists(t.cfg.TLSKeyPath) {
|
||||
return nil
|
||||
// Handle discrepencies related to the TLSEncryptKey setting.
|
||||
return t.ensureEncryption(keyRing)
|
||||
}
|
||||
|
||||
rpcsLog.Infof("Generating TLS certificates...")
|
||||
err := cert.GenCertPair(
|
||||
certBytes, keyBytes, err := cert.GenCertPair(
|
||||
"lnd autogenerated cert", t.cfg.TLSCertPath,
|
||||
t.cfg.TLSKeyPath, t.cfg.TLSExtraIPs,
|
||||
t.cfg.TLSExtraDomains, t.cfg.TLSDisableAutofill,
|
||||
t.cfg.TLSCertDuration,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if t.cfg.TLSEncryptKey {
|
||||
var b bytes.Buffer
|
||||
e, err := lnencrypt.KeyRingEncrypter(keyRing)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to create "+
|
||||
"encrypt key %v", err)
|
||||
}
|
||||
|
||||
err = e.EncryptPayloadToWriter(
|
||||
keyBytes, &b,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
keyBytes = b.Bytes()
|
||||
}
|
||||
|
||||
err = cert.WriteCertPair(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath, certBytes, keyBytes,
|
||||
)
|
||||
|
||||
rpcsLog.Infof("Done generating TLS certificates")
|
||||
|
||||
return err
|
||||
}
|
||||
|
||||
// certMaintenance checks if the certificate IP and domains matches the config,
|
||||
// ensureEncryption takes a look at a couple of things:
|
||||
// 1) If the TLS key is in plaintext, but TLSEncryptKey is set, we need to
|
||||
// encrypt the file and rewrite it to disk.
|
||||
// 2) On the flip side, if TLSEncryptKey is not set, but the key on disk
|
||||
// is encrypted, we need to error out and warn the user.
|
||||
func (t *TLSManager) ensureEncryption(keyRing keychain.SecretKeyRing) error {
|
||||
_, keyBytes, err := cert.GetCertBytesFromPath(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if t.cfg.TLSEncryptKey && bytes.HasPrefix(keyBytes, privateKeyPrefix) {
|
||||
var b bytes.Buffer
|
||||
e, err := lnencrypt.KeyRingEncrypter(keyRing)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to generate encrypt key %w",
|
||||
err)
|
||||
}
|
||||
|
||||
err = e.EncryptPayloadToWriter(keyBytes, &b)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = ioutil.WriteFile(
|
||||
t.cfg.TLSKeyPath, b.Bytes(), modifyFilePermissions,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// If the private key is encrypted but the user didn't pass
|
||||
// --tlsencryptkey we error out. This is because the wallet is not
|
||||
// unlocked yet and we don't have access to the keys yet for decryption.
|
||||
if !t.cfg.TLSEncryptKey && !bytes.HasPrefix(keyBytes,
|
||||
privateKeyPrefix) {
|
||||
|
||||
ltndLog.Errorf("The TLS private key is encrypted on disk.")
|
||||
|
||||
return errors.New("the TLS key is encrypted but the " +
|
||||
"--tlsencryptkey flag is not passed. Please either " +
|
||||
"restart lnd with the --tlsencryptkey flag or delete " +
|
||||
"the TLS files for regeneration")
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// decryptTLSKeyBytes decrypts the TLS key.
|
||||
func decryptTLSKeyBytes(keyRing keychain.SecretKeyRing,
|
||||
encryptedData []byte) ([]byte, error) {
|
||||
|
||||
reader := bytes.NewReader(encryptedData)
|
||||
encrypter, err := lnencrypt.KeyRingEncrypter(keyRing)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
plaintext, err := encrypter.DecryptPayloadFromReader(
|
||||
reader,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return plaintext, nil
|
||||
}
|
||||
|
||||
// maintainCert checks if the certificate IP and domains matches the config,
|
||||
// and renews the certificate if either this data is outdated or the
|
||||
// certificate is expired.
|
||||
func (t *TLSManager) certMaintenance(
|
||||
func (t *TLSManager) maintainCert(
|
||||
parsedCert *x509.Certificate) (*tls.Certificate, error) {
|
||||
|
||||
// We check whether the certificate we have on disk match the IPs and
|
||||
@ -180,26 +365,30 @@ func (t *TLSManager) certMaintenance(
|
||||
}
|
||||
|
||||
rpcsLog.Infof("Renewing TLS certificates...")
|
||||
err = cert.GenCertPair(
|
||||
"lnd autogenerated cert", t.cfg.TLSCertPath,
|
||||
t.cfg.TLSKeyPath, t.cfg.TLSExtraIPs,
|
||||
t.cfg.TLSExtraDomains, t.cfg.TLSDisableAutofill,
|
||||
t.cfg.TLSCertDuration,
|
||||
certBytes, keyBytes, err := cert.GenCertPair(
|
||||
"lnd autogenerated cert", t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
t.cfg.TLSExtraIPs, t.cfg.TLSExtraDomains,
|
||||
t.cfg.TLSDisableAutofill, t.cfg.TLSCertDuration,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
err = cert.WriteCertPair(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath, certBytes, keyBytes,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
rpcsLog.Infof("Done renewing TLS certificates")
|
||||
|
||||
// Reload the certificate data.
|
||||
reloadedCertData, _, err := cert.LoadCert(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &reloadedCertData, nil
|
||||
return &reloadedCertData, err
|
||||
}
|
||||
|
||||
// setUpLetsEncrypt automatically generates a Let's Encrypt certificate if the
|
||||
@ -271,3 +460,190 @@ func (t *TLSManager) setUpLetsEncrypt(certData *tls.Certificate,
|
||||
|
||||
return cleanUp
|
||||
}
|
||||
|
||||
// SetCertificateBeforeUnlock takes care of loading the certificate before
|
||||
// the wallet is unlocked. If the TLSEncryptKey setting is on, we need to
|
||||
// generate an ephemeral certificate we're able to use until the wallet is
|
||||
// unlocked and a new TLS pair can be encrypted to disk. Otherwise we can
|
||||
// process the certificate normally.
|
||||
func (t *TLSManager) SetCertificateBeforeUnlock() ([]grpc.ServerOption,
|
||||
[]grpc.DialOption, func(net.Addr) (net.Listener, error), func(),
|
||||
error) {
|
||||
|
||||
var cleanUp func()
|
||||
if t.cfg.TLSEncryptKey {
|
||||
_, err := t.loadEphemeralCertificate()
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, fmt.Errorf("unable to load "+
|
||||
"ephemeral certificate: %v", err)
|
||||
}
|
||||
} else {
|
||||
_, cleanUpFunc, err := t.generateOrRenewCert()
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, fmt.Errorf("unable to "+
|
||||
"generate or renew TLS certificate: %v", err)
|
||||
}
|
||||
cleanUp = cleanUpFunc
|
||||
}
|
||||
|
||||
serverOpts, restDialOpts, restListen, err := t.getConfig()
|
||||
if err != nil {
|
||||
return nil, nil, nil, nil, fmt.Errorf("unable to load TLS "+
|
||||
"credentials: %v", err)
|
||||
}
|
||||
|
||||
return serverOpts, restDialOpts, restListen, cleanUp, nil
|
||||
}
|
||||
|
||||
// loadEphemeralCertificate creates and loads the ephemeral certificate which
|
||||
// is used temporarily for secure communications before the wallet is unlocked.
|
||||
func (t *TLSManager) loadEphemeralCertificate() ([]byte, error) {
|
||||
rpcsLog.Infof("Generating ephemeral TLS certificates...")
|
||||
|
||||
tmpValidity := validityHours * time.Hour
|
||||
// Append .tmp to the end of the cert for differentiation.
|
||||
tmpCertPath := t.cfg.TLSCertPath + ".tmp"
|
||||
|
||||
// Pass in a blank string for the key path so the
|
||||
// function doesn't write them to disk.
|
||||
certBytes, keyBytes, err := cert.GenCertPair(
|
||||
"lnd ephemeral autogenerated cert", tmpCertPath,
|
||||
"", t.cfg.TLSExtraIPs, t.cfg.TLSExtraDomains,
|
||||
t.cfg.TLSDisableAutofill, tmpValidity,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
t.setEphemeralSettings(keyBytes, certBytes, t.cfg.TLSCertPath+".tmp")
|
||||
|
||||
err = cert.WriteCertPair(tmpCertPath, "", certBytes, keyBytes)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
rpcsLog.Infof("Done generating ephemeral TLS certificates")
|
||||
|
||||
return keyBytes, nil
|
||||
}
|
||||
|
||||
// LoadPermanentCertificate deletes the ephemeral certificate file and
|
||||
// generates a new one with the real keyring.
|
||||
func (t *TLSManager) LoadPermanentCertificate(
|
||||
keyRing keychain.SecretKeyRing) error {
|
||||
|
||||
if !t.cfg.TLSEncryptKey {
|
||||
return nil
|
||||
}
|
||||
|
||||
tmpCertPath := t.cfg.TLSCertPath + ".tmp"
|
||||
err := os.Remove(tmpCertPath)
|
||||
if err != nil {
|
||||
ltndLog.Warn("Unable to delete temp cert at %v",
|
||||
tmpCertPath)
|
||||
}
|
||||
|
||||
err = t.generateCertPair(keyRing)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
certBytes, encryptedKeyBytes, err := cert.GetCertBytesFromPath(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
reader := bytes.NewReader(encryptedKeyBytes)
|
||||
e, err := lnencrypt.KeyRingEncrypter(keyRing)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to generate encrypt key %w",
|
||||
err)
|
||||
}
|
||||
|
||||
keyBytes, err := e.DecryptPayloadFromReader(reader)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// Switch the server's TLS certificate to the persistent one. By
|
||||
// changing the cert data the TLSReloader points to,
|
||||
err = t.tlsReloader.AttemptReload(certBytes, keyBytes)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
t.deleteEphemeralSettings()
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// setEphemeralSettings sets the TLSManager settings needed when an ephemeral
|
||||
// certificate is created.
|
||||
func (t *TLSManager) setEphemeralSettings(keyBytes, certBytes []byte,
|
||||
certPath string) {
|
||||
|
||||
t.ephemeralKey = keyBytes
|
||||
t.ephemeralCert = certBytes
|
||||
t.ephemeralCertPath = t.cfg.TLSCertPath + ".tmp"
|
||||
}
|
||||
|
||||
// deleteEphemeralSettings deletes the TLSManager ephemeral settings that are
|
||||
// no longer needed when the ephemeral certificate is deleted so the Manager
|
||||
// knows we're no longer using it.
|
||||
func (t *TLSManager) deleteEphemeralSettings() {
|
||||
t.ephemeralKey = nil
|
||||
t.ephemeralCert = nil
|
||||
t.ephemeralCertPath = ""
|
||||
}
|
||||
|
||||
// fileExists reports whether the named file or directory exists.
|
||||
// This function is taken from https://github.com/btcsuite/btcd
|
||||
func fileExists(name string) bool {
|
||||
if _, err := os.Stat(name); err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// IsCertExpired checks if the current TLS certificate is expired.
|
||||
func (t *TLSManager) IsCertExpired(keyRing keychain.SecretKeyRing) (bool,
|
||||
time.Time, error) {
|
||||
|
||||
certBytes, keyBytes, err := cert.GetCertBytesFromPath(
|
||||
t.cfg.TLSCertPath, t.cfg.TLSKeyPath,
|
||||
)
|
||||
if err != nil {
|
||||
return false, time.Time{}, err
|
||||
}
|
||||
|
||||
// If TLSEncryptKey is set, there are two states the
|
||||
// certificate can be in: ephemeral or permanent.
|
||||
// Retrieve the key depending on which state it is in.
|
||||
if t.ephemeralKey != nil {
|
||||
keyBytes = t.ephemeralKey
|
||||
} else if t.cfg.TLSEncryptKey {
|
||||
keyBytes, err = decryptTLSKeyBytes(keyRing, keyBytes)
|
||||
if err != nil {
|
||||
return false, time.Time{}, err
|
||||
}
|
||||
}
|
||||
|
||||
_, parsedCert, err := cert.LoadCertFromBytes(
|
||||
certBytes, keyBytes,
|
||||
)
|
||||
if err != nil {
|
||||
return false, time.Time{}, err
|
||||
}
|
||||
|
||||
// If the current time is passed the certificate's
|
||||
// expiry time, then it is considered expired
|
||||
if time.Now().After(parsedCert.NotAfter) {
|
||||
return true, parsedCert.NotAfter, nil
|
||||
}
|
||||
|
||||
return false, parsedCert.NotAfter, nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user