From be596e0949a21a97b58a3453a11a182e0b3a433b Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Wed, 10 Mar 2021 18:45:13 -0800 Subject: [PATCH] Add new trust root for production TUF repo --- pkg/update/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/update/update.go b/pkg/update/update.go index 5069d0156a..3178aa5ddc 100644 --- a/pkg/update/update.go +++ b/pkg/update/update.go @@ -21,7 +21,7 @@ const ( binDir = "bin" defaultURL = "https://tuf.fleetctl.com" - defaultRootKeys = `[{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"037b475337c1acdafe20cff4fee6308209bc4ba23a2439a1f7be85131794cae1"}}]` + defaultRootKeys = `[{"keytype":"ed25519","scheme":"ed25519","keyid_hash_algorithms":["sha256","sha512"],"keyval":{"public":"6d71d3beac3b830be929f2b10d513448d49ec6bb62a680176b89ffdfca180eb4"}}]` ) // Updater is responsible for managing update state.