// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

edition = "2024";

package chrome_root_store;

import "signer_set.proto";

// Merkle Tree Certificates configuration as used by Chrome.
message MtcConfig {
  SignerSet signer_set = 1;
  // If true, Chrome will trust MTCs from any known trusted issuer, without
  // enforcing mirroring cosigner requirements.
  bool disable_mtc_mirroring_requirements = 2;
}
