aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/constants.go
blob: 104acea2e214819c0d46f0e0ac2fb30cb8aeaaca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019-2020 WireGuard LLC. All Rights Reserved.
 */

package updater

const (
	releasePublicKeyBase64 = "RWRNqGKtBXftKTKPpBPGDMe8jHLnFQ0EdRy8Wg0apV6vTDFLAODD83G4"
	updateServerHost       = "download.wireguard.com"
	updateServerPort       = 443
	updateServerUseHttps   = true
	latestVersionPath      = "/windows-client/latest.sig"
	msiPath                = "/windows-client/%s"
	msiArchPrefix          = "wireguard-%s-"
	msiSuffix              = ".msi"
)