syncthing/lib/upgrade/signingkey.go

19 lines
669 B
Go
Raw Normal View History

2015-08-21 10:13:31 +02:00
// Copyright (C) 2015 The Syncthing Authors.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
2015-08-21 10:13:31 +02:00
package upgrade
import _ "embed"
2015-10-31 11:15:49 +01:00
// SigningKey is the public key used to verify signed upgrades. It must match
// the private key used to sign binaries for the built in upgrade mechanism to
2015-08-21 10:13:31 +02:00
// accept an upgrade. Keys and signatures can be created and verified with the
// stsigtool utility. The build script creates signed binaries when given the
// -sign option.
//
//go:embed signingkey.pem
var SigningKey []byte