aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/constants.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-04-28 12:27:06 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-04-29 08:41:30 +0200
commit51a410523acd4687a91ff6b48e05a4c7d711126a (patch)
tree1c3e6059569376c72336ba09f06e9a5ee5e1e833 /updater/constants.go
parentgo.mod: use forked winio with no thirdparty deps (diff)
downloadwireguard-windows-51a410523acd4687a91ff6b48e05a4c7d711126a.tar.xz
wireguard-windows-51a410523acd4687a91ff6b48e05a4c7d711126a.zip
updater: add initial skeleton
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
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"
+)