golang.zx2c4.com/wireguard/windows@v0.5.4-0.20230123132234-dcc0eb72a04b/updater/constants.go (about)

     1  /* SPDX-License-Identifier: MIT
     2   *
     3   * Copyright (C) 2019-2022 WireGuard LLC. All Rights Reserved.
     4   */
     5  
     6  package updater
     7  
     8  const (
     9  	releasePublicKeyBase64 = "RWRNqGKtBXftKTKPpBPGDMe8jHLnFQ0EdRy8Wg0apV6vTDFLAODD83G4"
    10  	updateServerHost       = "download.wireguard.com"
    11  	updateServerPort       = 443
    12  	updateServerUseHttps   = true
    13  	latestVersionPath      = "/windows-client/latest.sig"
    14  	msiPath                = "/windows-client/%s"
    15  	msiArchPrefix          = "wireguard-%s-"
    16  	msiSuffix              = ".msi"
    17  )