• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto2";
6
7option optimize_for = LITE_RUNTIME;
8
9// TODO(crbug.com/openscreen/90): Rename to openscreen.cast, to update to the
10// current namespacing of the library. Also, this file should probably be moved
11// to the public directory. And, all of this will have to be coordinated with a
12// DEPS roll in Chromium (since Chromium code depends on this).
13package cast.channel;
14
15message AuthorityKeys {
16  message Key {
17    required bytes fingerprint = 1;
18    required bytes public_key = 2;
19  }
20  repeated Key keys = 1;
21}
22