forked from google/trillian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrillian_map_api.proto
86 lines (72 loc) · 2.55 KB
/
trillian_map_api.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
option java_multiple_files = true;
option java_package = "com.google.trillian.proto";
option java_outer_classname = "TrillianMapApiProto";
package trillian;
import "trillian.proto";
// MapLeaf represents the data behind Map leaves.
message MapLeaf {
// index is the location of this leaf.
// All indexes for a given Map must contain a constant number of bits.
bytes index = 1;
// leaf_hash is the tree hash of leaf_value.
bytes leaf_hash = 2;
// leaf_value is the data the tree commits to.
bytes leaf_value = 3;
// extra_data holds related contextual data, but is not covered by any hash.
bytes extra_data = 4;
}
message MapLeafInclusion {
MapLeaf leaf = 1;
repeated bytes inclusion = 2;
}
message GetMapLeavesRequest {
int64 map_id = 1;
repeated bytes index = 2;
int64 revision = 3;
}
message GetMapLeavesResponse {
repeated MapLeafInclusion map_leaf_inclusion = 2;
SignedMapRoot map_root = 3;
}
message SetMapLeavesRequest {
int64 map_id = 1;
repeated MapLeaf leaves = 2;
MapperMetadata mapper_data = 3;
}
message SetMapLeavesResponse {
SignedMapRoot map_root = 2;
}
message GetSignedMapRootRequest {
int64 map_id = 1;
}
message GetSignedMapRootByRevisionRequest {
int64 map_id = 1;
int64 revision = 2;
}
message GetSignedMapRootResponse {
SignedMapRoot map_root = 2;
}
// TrillianMap defines a service which provides access to a Verifiable Map as
// defined in the Verifiable Data Structures paper.
service TrillianMap {
// GetLeaves returns an inclusion proof for each index requested.
// For indexes that do not exist, the inclusion proof will use nil for the empty leaf value.
rpc GetLeaves(GetMapLeavesRequest) returns(GetMapLeavesResponse) {}
rpc SetLeaves(SetMapLeavesRequest) returns(SetMapLeavesResponse) {}
rpc GetSignedMapRoot(GetSignedMapRootRequest) returns(GetSignedMapRootResponse) {}
rpc GetSignedMapRootByRevision(GetSignedMapRootByRevisionRequest) returns(GetSignedMapRootResponse) {}
}