aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/constants.go
diff options
context:
space:
mode:
Diffstat (limited to 'updater/constants.go')
-rw-r--r--updater/constants.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/updater/constants.go b/updater/constants.go
new file mode 100644
index 00000000..ae3988bd
--- /dev/null
+++ b/updater/constants.go
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
+ */
+
+package updater
+
+const (
+ releasePublicKeyBase64 = "RWQGxwD+15iPpnPCEijYJ3CWYFgojWwBJZNg0OnJfICVu/CfyKeQ0vIA"
+ latestVersionURL = "https://download.wireguard.com/windows-client/latest.sig"
+ msiURL = "https://download.wireguard.com/windows-client/%s"
+ msiArchPrefix = "wireguard-%s-"
+ msiSuffix = ".msi"
+)