Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: tokenserver/api/admin/v1/config.pb.go

Issue 2413683004: token-server: Delegation config import, validation and evaluation. (Closed)
Patch Set: also check validity_duration Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tokenserver/api/admin/v1/config.proto ('k') | tokenserver/api/admin/v1/pb.discovery.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Code generated by protoc-gen-go. 1 // Code generated by protoc-gen-go.
2 // source: github.com/luci/luci-go/tokenserver/api/admin/v1/config.proto 2 // source: github.com/luci/luci-go/tokenserver/api/admin/v1/config.proto
3 // DO NOT EDIT! 3 // DO NOT EDIT!
4 4
5 package admin 5 package admin
6 6
7 import proto "github.com/golang/protobuf/proto" 7 import proto "github.com/golang/protobuf/proto"
8 import fmt "fmt" 8 import fmt "fmt"
9 import math "math" 9 import math "math"
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 func (m *DelegationPermissions) GetRules() []*DelegationRule { 99 func (m *DelegationPermissions) GetRules() []*DelegationRule {
100 if m != nil { 100 if m != nil {
101 return m.Rules 101 return m.Rules
102 } 102 }
103 return nil 103 return nil
104 } 104 }
105 105
106 // DelegationRule describes a single allowed case of using delegation tokens. 106 // DelegationRule describes a single allowed case of using delegation tokens.
107 // 107 //
108 // An incoming MintDelegationToken request is basically a tuple of: 108 // An incoming MintDelegationTokenRequest is basically a tuple of:
109 // * 'requestor_id' - an identity of whoever makes the request. 109 // * 'requestor_id' - an identity of whoever makes the request.
110 // * 'delegated_identity' - an identity to delegate. 110 // * 'delegated_identity' - an identity to delegate.
111 // * 'audience' - a set of identities that will be able to use the token. 111 // * 'audience' - a set of identities that will be able to use the token.
112 // * 'services' - a set of services that should accept the token. 112 // * 'services' - a set of services that should accept the token.
113 // 113 //
114 // A request matches a rule iff: 114 // A request matches a rule iff:
115 // * 'requestor_id' is in 'requestor' set. 115 // * 'requestor_id' is in 'requestor' set.
116 // * 'delegated_identity' is in 'allowed_to_impersonate' set. 116 // * 'delegated_identity' is in 'allowed_to_impersonate' set.
117 // * 'audience' is a subset of 'allowed_audience' set. 117 // * 'audience' is a subset of 'allowed_audience' set.
118 // * 'services' is a subset of 'target_service' set. 118 // * 'services' is a subset of 'target_service' set.
119 // 119 //
120 // The presence of a matching rule permits to mint the token. The rule also 120 // The presence of a matching rule permits to mint the token. The rule also
121 // provides an upper bound on allowed validity_duration, and the rule's name 121 // provides an upper bound on allowed validity_duration, and the rule's name
122 // is logged in the audit trail. 122 // is logged in the audit trail.
123 type DelegationRule struct { 123 type DelegationRule struct {
124 // A descriptive name of this rule, for the audit log. 124 // A descriptive name of this rule, for the audit log.
125 Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` 125 Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
126 // Email of developers that added this rule, to know who to contact. 126 // Email of developers that added this rule, to know who to contact.
127 Owner []string `protobuf:"bytes,2,rep,name=owner" json:"owner,omitempty" ` 127 Owner []string `protobuf:"bytes,2,rep,name=owner" json:"owner,omitempty" `
128 // A set of callers to which this rule applies. 128 // A set of callers to which this rule applies.
129 // 129 //
130 // Matched against verified credentials of a caller of MintDelegationTok en.
131 //
130 // Each element is either: 132 // Each element is either:
131 // * An identity string ("user:<email>"). 133 // * An identity string ("user:<email>").
132 // * A group reference ("group:<name>"). 134 // * A group reference ("group:<name>").
135 //
136 // The groups specified here are expanded when MintDelegationTokenReques t is
137 // evaluated.
133 Requestor []string `protobuf:"bytes,3,rep,name=requestor" json:"requesto r,omitempty"` 138 Requestor []string `protobuf:"bytes,3,rep,name=requestor" json:"requesto r,omitempty"`
134 // Identities that are allowed to be delegated/impersonated by the reque stor. 139 // Identities that are allowed to be delegated/impersonated by the reque stor.
135 // 140 //
141 // Matched against 'delegated_identity' field of MintDelegationTokenRequ est.
142 //
136 // Each element is either: 143 // Each element is either:
137 // * An identity string ("user:<email>"). 144 // * An identity string ("user:<email>").
138 // * A group reference ("group:<name>"). 145 // * A group reference ("group:<name>").
139 // * A special identifier "REQUESTOR" that is substituted by the reques tor 146 // * A special identifier "REQUESTOR" that is substituted by the reques tor
140 // identity when evaluating the rule. 147 // identity when evaluating the rule.
141 // 148 //
142 // "REQUESTOR" allows one to generate tokens that delegate their own ide ntity 149 // "REQUESTOR" allows one to generate tokens that delegate their own ide ntity
143 // to some target audience. 150 // to some target audience.
151 //
152 // The groups specified here are expanded when MintDelegationTokenReques t is
153 // evaluated.
144 AllowedToImpersonate []string `protobuf:"bytes,4,rep,name=allowed_to_imp ersonate,json=allowedToImpersonate" json:"allowed_to_impersonate,omitempty"` 154 AllowedToImpersonate []string `protobuf:"bytes,4,rep,name=allowed_to_imp ersonate,json=allowedToImpersonate" json:"allowed_to_impersonate,omitempty"`
145 // A set of identities that should be able to use the new token. 155 // A set of identities that should be able to use the new token.
146 // 156 //
157 // Matched against 'audience' field of MintDelegationTokenRequest.
158 //
147 // Each element is either: 159 // Each element is either:
148 // * An identity string ("user:<email>"). 160 // * An identity string ("user:<email>").
149 // * A group reference ("group:<name>"). 161 // * A group reference ("group:<name>").
150 // * A special identifier "REQUESTOR" that is substituted by the reques tor 162 // * A special identifier "REQUESTOR" that is substituted by the reques tor
151 // identity when evaluating the rule. 163 // identity when evaluating the rule.
164 // * A special token "*" that means "any bearer can use the new token,
165 // including anonymous".
152 // 166 //
153 // "REQUESTOR" is typically used here for rules that allow requestors to 167 // "REQUESTOR" is typically used here for rules that allow requestors to
154 // impersonate someone else. The corresponding tokens have the requestor as 168 // impersonate someone else. The corresponding tokens have the requestor as
155 // the only allowed audience. 169 // the only allowed audience.
170 //
171 // The groups specified here are NOT expanded when MintDelegationTokenRe quest
172 // is evaluated. To match the rule, MintDelegationTokenRequest must spec ify
173 // subset of 'allowed_audience' groups explicitly in 'audience' field.
156 AllowedAudience []string `protobuf:"bytes,5,rep,name=allowed_audience,js on=allowedAudience" json:"allowed_audience,omitempty"` 174 AllowedAudience []string `protobuf:"bytes,5,rep,name=allowed_audience,js on=allowedAudience" json:"allowed_audience,omitempty"`
157 // A set of services that should be able to accept the new token. 175 // A set of services that should be able to accept the new token.
158 // 176 //
159 » // Each element is a service identity string ("service:<id>"). 177 » // Matched against 'services' field of MintDelegationTokenRequest.
178 » //
179 » // Each element is either:
180 » // * A service identity string ("service:<id>").
181 » // * A special token "*" that mean "any LUCI service should accept the
182 » // token".
160 TargetService []string `protobuf:"bytes,6,rep,name=target_service,json=t argetService" json:"target_service,omitempty"` 183 TargetService []string `protobuf:"bytes,6,rep,name=target_service,json=t argetService" json:"target_service,omitempty"`
161 // Maximum allowed validity duration (sec) of minted delegation tokens. 184 // Maximum allowed validity duration (sec) of minted delegation tokens.
162 // 185 //
163 // Default is 12 hours. 186 // Default is 12 hours.
164 MaxValidityDuration int64 `protobuf:"varint,7,opt,name=max_validity_dura tion,json=maxValidityDuration" json:"max_validity_duration,omitempty"` 187 MaxValidityDuration int64 `protobuf:"varint,7,opt,name=max_validity_dura tion,json=maxValidityDuration" json:"max_validity_duration,omitempty"`
165 } 188 }
166 189
167 func (m *DelegationRule) Reset() { *m = DelegationRule{} } 190 func (m *DelegationRule) Reset() { *m = DelegationRule{} }
168 func (m *DelegationRule) String() string { return proto.CompactTextSt ring(m) } 191 func (m *DelegationRule) String() string { return proto.CompactTextSt ring(m) }
169 func (*DelegationRule) ProtoMessage() {} 192 func (*DelegationRule) ProtoMessage() {}
170 func (*DelegationRule) Descriptor() ([]byte, []int) { return fileDescriptor2, [] int{4} } 193 func (*DelegationRule) Descriptor() ([]byte, []int) { return fileDescriptor2, [] int{4} }
171 194
172 func init() { 195 func init() {
173 proto.RegisterType((*TokenServerConfig)(nil), "tokenserver.admin.TokenSe rverConfig") 196 proto.RegisterType((*TokenServerConfig)(nil), "tokenserver.admin.TokenSe rverConfig")
174 proto.RegisterType((*CertificateAuthorityConfig)(nil), "tokenserver.admi n.CertificateAuthorityConfig") 197 proto.RegisterType((*CertificateAuthorityConfig)(nil), "tokenserver.admi n.CertificateAuthorityConfig")
175 proto.RegisterType((*DomainConfig)(nil), "tokenserver.admin.DomainConfig ") 198 proto.RegisterType((*DomainConfig)(nil), "tokenserver.admin.DomainConfig ")
176 proto.RegisterType((*DelegationPermissions)(nil), "tokenserver.admin.Del egationPermissions") 199 proto.RegisterType((*DelegationPermissions)(nil), "tokenserver.admin.Del egationPermissions")
177 proto.RegisterType((*DelegationRule)(nil), "tokenserver.admin.Delegation Rule") 200 proto.RegisterType((*DelegationRule)(nil), "tokenserver.admin.Delegation Rule")
178 } 201 }
179 202
180 func init() { 203 func init() {
181 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/con fig.proto", fileDescriptor2) 204 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/con fig.proto", fileDescriptor2)
182 } 205 }
183 206
184 var fileDescriptor2 = []byte{ 207 var fileDescriptor2 = []byte{
185 » // 533 bytes of a gzipped FileDescriptorProto 208 » // 539 bytes of a gzipped FileDescriptorProto
186 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x53, 0x5f, 0x6f, 0xd3, 0x3e, 209 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x93, 0x5f, 0x6f, 0xd3, 0x3c,
187 » 0x14, 0x55, 0xff, 0xa5, 0xad, 0x7f, 0x5b, 0x7f, 0x9d, 0x69, 0x47, 0x04, 0x48, 0x8c, 0x4a, 0x48, 210 » 0x18, 0xc5, 0x95, 0x3f, 0xcd, 0x52, 0xbf, 0xdb, 0xde, 0xce, 0x74, 0xc3, 0x02, 0x24, 0x4a, 0x25,
188 » 0xe5, 0x61, 0x8d, 0x18, 0x48, 0x3c, 0xf1, 0x30, 0xad, 0x2f, 0x43, 0x48, 0x54, 0xd9, 0xe0, 0xd5, 211 » 0xa4, 0x72, 0xb1, 0x46, 0x0c, 0x24, 0xae, 0xb8, 0x98, 0xd6, 0x9b, 0x55, 0x48, 0x4c, 0xd9, 0xe0,
189 » 0x72, 0x93, 0xdb, 0xd4, 0x5a, 0x62, 0x17, 0xdb, 0x69, 0xe1, 0x7b, 0xf0, 0x09, 0xf9, 0x24, 0x5c, 212 » 0xd6, 0x72, 0x9d, 0xa7, 0xad, 0x35, 0xc7, 0xee, 0x1c, 0xbb, 0xdd, 0xbe, 0x07, 0x9f, 0x90, 0x4f,
190 » 0x3b, 0x19, 0x1d, 0xa2, 0xbc, 0x58, 0xbe, 0xe7, 0x9c, 0x7b, 0xaf, 0x4f, 0x4f, 0x4a, 0xde, 0x67, 213 » 0x82, 0xe2, 0x64, 0x74, 0x88, 0x72, 0x13, 0xc5, 0xe7, 0x77, 0x9e, 0xc7, 0x3a, 0x39, 0x0a, 0xfa,
191 » 0xc2, 0xae, 0xcb, 0xe5, 0x2c, 0x51, 0x45, 0x94, 0x97, 0x89, 0xf0, 0xc7, 0x79, 0xa6, 0x22, 0xab, 214 » 0xbc, 0x10, 0x76, 0xe9, 0x66, 0x63, 0xae, 0xcb, 0x4c, 0x3a, 0x2e, 0xfc, 0xe3, 0x74, 0xa1, 0x33,
192 » 0xee, 0x40, 0x1a, 0xd0, 0x5b, 0xd0, 0x11, 0xdf, 0x88, 0x88, 0xa7, 0x85, 0x90, 0xd1, 0xf6, 0x75, 215 » 0xab, 0x6f, 0x41, 0x55, 0x60, 0xd6, 0x60, 0x32, 0xb6, 0x12, 0x19, 0x2b, 0x4a, 0xa1, 0xb2, 0xf5,
193 » 0x94, 0x28, 0xb9, 0x12, 0xd9, 0x6c, 0xa3, 0x95, 0x55, 0xf4, 0xe4, 0x81, 0x6c, 0xe6, 0x25, 0x93, 216 » 0xfb, 0x8c, 0x6b, 0x35, 0x17, 0x8b, 0xf1, 0xca, 0x68, 0xab, 0xf1, 0xd1, 0x13, 0xdb, 0xd8, 0x5b,
194 » 0x1d, 0x39, 0xb9, 0x75, 0xe0, 0x8d, 0x07, 0xaf, 0xbc, 0x9a, 0x2e, 0xc9, 0x38, 0x01, 0x6d, 0xc5, 217 » 0x86, 0x1b, 0x74, 0x74, 0x53, 0x8b, 0xd7, 0x5e, 0xbc, 0xf0, 0x6e, 0x3c, 0x43, 0xc7, 0x1c, 0x8c,
195 » 0x4a, 0x24, 0xdc, 0x02, 0xe3, 0xa5, 0x5d, 0x2b, 0x2d, 0xec, 0xf7, 0xb0, 0x71, 0xd6, 0x9a, 0xfe, 218 » 0x15, 0x73, 0xc1, 0x99, 0x05, 0xca, 0x9c, 0x5d, 0x6a, 0x23, 0xec, 0x03, 0x09, 0x06, 0xd1, 0xe8,
196 » 0x77, 0x71, 0x3e, 0xfb, 0x6b, 0xce, 0xec, 0x6a, 0xaf, 0xbf, 0xbc, 0x97, 0x57, 0xd3, 0xe2, 0x51, 219 » 0xbf, 0xb3, 0xd3, 0xf1, 0x5f, 0x7b, 0xc6, 0x17, 0x5b, 0xff, 0xf9, 0xa3, 0xbd, 0xd9, 0x96, 0xf7,
197 » 0x72, 0x80, 0x9b, 0xfc, 0x6c, 0x90, 0x27, 0xff, 0x6e, 0xa2, 0x4f, 0x49, 0xbf, 0x94, 0xe2, 0x6b, 220 » 0xf9, 0x0e, 0x36, 0xfc, 0x19, 0xa0, 0x17, 0xff, 0x1e, 0xc2, 0x2f, 0x51, 0xd7, 0x29, 0x71, 0xe7,
198 » 0x09, 0x4c, 0xa4, 0x61, 0x70, 0xd6, 0x98, 0xb6, 0xe2, 0x5e, 0x05, 0x5c, 0xa7, 0x74, 0x40, 0x9a, 221 » 0x80, 0x8a, 0x82, 0x24, 0x83, 0x60, 0x14, 0xe5, 0x69, 0x23, 0x5c, 0x16, 0xf8, 0x10, 0x85, 0x5c,
199 » 0x89, 0xc4, 0xc7, 0x34, 0xa6, 0xfd, 0x18, 0x6f, 0x4e, 0xec, 0x76, 0xb0, 0x0d, 0xb7, 0xeb, 0xb0, 222 » 0x91, 0x60, 0x10, 0x8c, 0xba, 0x79, 0xc8, 0x55, 0x6d, 0xae, 0xef, 0xa0, 0x2b, 0x66, 0x97, 0x24,
200 » 0xe9, 0xe1, 0x9e, 0x03, 0x16, 0x58, 0xd3, 0xc7, 0xa4, 0x9b, 0xe8, 0x9c, 0x95, 0x3a, 0x0f, 0x5b, 223 » 0xf4, 0x72, 0x5a, 0x0b, 0x57, 0xcc, 0x2e, 0xf1, 0x73, 0xb4, 0xc7, 0x8d, 0xa4, 0xce, 0x48, 0x12,
201 » 0x9e, 0x0a, 0xb0, 0xfc, 0xac, 0x73, 0xbf, 0xc2, 0x00, 0x53, 0xce, 0x5e, 0xd8, 0x46, 0xaa, 0x87, 224 » 0x79, 0x94, 0x70, 0x23, 0xbf, 0x19, 0xe9, 0xaf, 0xa8, 0x80, 0xea, 0x3a, 0x1e, 0x89, 0x07, 0xc1,
202 » 0x2b, 0x0c, 0x7c, 0x72, 0x35, 0x9d, 0x93, 0xe3, 0x3b, 0xa9, 0x76, 0x92, 0xa5, 0xaa, 0xe0, 0x42, 225 » 0x28, 0xcd, 0x53, 0x57, 0xc1, 0xd7, 0xfa, 0x8c, 0x27, 0xe8, 0xe0, 0x56, 0xe9, 0x8d, 0xa2, 0x85,
203 » 0x9a, 0xb0, 0xe3, 0xad, 0x3f, 0x3f, 0x60, 0x7d, 0xee, 0x15, 0xb5, 0xd9, 0x23, 0xdf, 0x55, 0x41, 226 » 0x2e, 0x99, 0x50, 0x15, 0xe9, 0xf8, 0xe8, 0xaf, 0x77, 0x44, 0x9f, 0x78, 0x47, 0x1b, 0x76, 0xdf,
204 » 0x66, 0x62, 0xc9, 0xd1, 0x43, 0x96, 0x9e, 0x92, 0xa0, 0x9a, 0xe7, 0x7f, 0x49, 0x7c, 0x4a, 0x55, 227 » 0x4f, 0x35, 0x52, 0x35, 0xb4, 0x68, 0xff, 0x29, 0xc5, 0x27, 0x28, 0x69, 0xf6, 0xf9, 0x2f, 0xd9,
205 » 0xd1, 0xb7, 0xe4, 0xb4, 0xe0, 0xc9, 0x5a, 0x48, 0x60, 0x7e, 0x3e, 0xcb, 0xc5, 0x0a, 0xac, 0x28, 228 » 0xcd, 0xdb, 0x13, 0xfe, 0x88, 0x4e, 0x4a, 0xc6, 0x97, 0x42, 0x01, 0xf5, 0xfb, 0xa9, 0x14, 0x73,
206 » 0x00, 0xd7, 0x3a, 0xeb, 0xa3, 0x9a, 0xf5, 0x51, 0x7d, 0xac, 0xb9, 0x0f, 0xed, 0x5e, 0x73, 0xd8, 229 » 0xb0, 0xa2, 0x04, 0xd2, 0xf1, 0xd1, 0xfb, 0x2d, 0xf5, 0x55, 0x7d, 0x69, 0xd9, 0x34, 0x4e, 0xc3,
207 » 0xc2, 0xb3, 0x35, 0x6c, 0xe3, 0xd9, 0x1e, 0x76, 0xf0, 0x0c, 0x86, 0xdd, 0xc9, 0x82, 0x8c, 0xe7, 230 » 0x5e, 0x34, 0x8d, 0xd3, 0xa8, 0x17, 0x4f, 0xe3, 0x34, 0xee, 0x75, 0xa6, 0x71, 0x9a, 0xf4, 0xf6,
208 » 0x90, 0x43, 0xc6, 0xad, 0x50, 0x72, 0x01, 0xba, 0x10, 0xc6, 0xe0, 0xcd, 0xd0, 0x77, 0xa4, 0xa3, 231 » 0x86, 0x57, 0xe8, 0x78, 0x02, 0x12, 0x16, 0xcc, 0x0a, 0xad, 0xae, 0xc0, 0x94, 0xa2, 0xaa, 0x84,
209 » 0xcb, 0x1c, 0x4c, 0x9d, 0xe3, 0x8b, 0x43, 0x66, 0x7e, 0x37, 0xc6, 0xa8, 0x8c, 0x2b, 0xfd, 0xe4, 232 » 0x56, 0x15, 0xfe, 0x84, 0x3a, 0xc6, 0x49, 0xa8, 0xda, 0x1e, 0xdf, 0xec, 0x0a, 0xf3, 0x7b, 0x30,
210 » 0x47, 0x93, 0x0c, 0xfe, 0x64, 0x28, 0x25, 0x6d, 0xc9, 0xf1, 0x81, 0x55, 0x0a, 0xfe, 0x4e, 0x47, 233 » 0x77, 0x12, 0xf2, 0xc6, 0x3f, 0xfc, 0x11, 0xa2, 0xc3, 0x3f, 0x09, 0xc6, 0x28, 0x56, 0xac, 0x84,
211 » 0xa4, 0x83, 0xe6, 0x41, 0x63, 0x06, 0xce, 0x5d, 0x55, 0xd0, 0x67, 0xa4, 0xaf, 0x01, 0x83, 0x33, 234 » 0xb6, 0x05, 0xff, 0x8e, 0xfb, 0xa8, 0xa3, 0x37, 0x0a, 0x0c, 0x09, 0x7d, 0xba, 0xe6, 0x80, 0x5f,
212 » 0x56, 0x69, 0x8c, 0xc0, 0x31, 0x7b, 0xc0, 0x59, 0xe7, 0x79, 0xae, 0x76, 0x90, 0xa2, 0x75, 0x26, 235 » 0xa1, 0xae, 0x81, 0x3b, 0x07, 0x95, 0xd5, 0x86, 0x44, 0x9e, 0x6c, 0x85, 0x3a, 0x3a, 0x93, 0x52,
213 » 0x8a, 0x0d, 0x68, 0xa3, 0x24, 0x7e, 0x11, 0x18, 0x89, 0x93, 0x8e, 0x6a, 0xf6, 0x56, 0x5d, 0xef, 236 » 0x6f, 0xa0, 0xa0, 0x56, 0x53, 0x51, 0xae, 0xc0, 0x54, 0x5a, 0x31, 0x0b, 0x24, 0xf6, 0xd6, 0x7e,
214 » 0x39, 0xfa, 0x8a, 0x0c, 0xef, 0xbb, 0x78, 0x99, 0x0a, 0x90, 0x09, 0xf8, 0x84, 0xfa, 0xf1, 0xff, 237 » 0x4b, 0x6f, 0xf4, 0xe5, 0x96, 0xe1, 0x77, 0xa8, 0xf7, 0x38, 0xc5, 0x5c, 0x21, 0x40, 0x71, 0xf0,
215 » 0x35, 0x7e, 0x59, 0xc3, 0xf4, 0x25, 0x19, 0x58, 0xae, 0x33, 0xb0, 0xcc, 0x19, 0x15, 0x28, 0x0c, 238 » 0x0d, 0x75, 0xf3, 0xff, 0x5b, 0xfd, 0xbc, 0x95, 0xf1, 0x5b, 0x74, 0x68, 0x99, 0x59, 0x80, 0xa5,
216 » 0xbc, 0xf0, 0xb8, 0x42, 0x6f, 0x2a, 0x90, 0x5e, 0x90, 0x71, 0xc1, 0xbf, 0xb1, 0x2d, 0xcf, 0x45, 239 » 0x75, 0x50, 0xc1, 0x81, 0x24, 0xde, 0x78, 0xd0, 0xa8, 0xd7, 0x8d, 0x88, 0xcf, 0xd0, 0x71, 0xc9,
217 » 0x8a, 0x9f, 0x21, 0x4b, 0x4b, 0xed, 0xcd, 0x86, 0x5d, 0x9f, 0xc0, 0x23, 0x24, 0xbf, 0xd4, 0xdc, 240 » 0xee, 0xe9, 0x9a, 0x49, 0x51, 0x08, 0xfb, 0x40, 0x0b, 0x67, 0x7c, 0x58, 0xb2, 0xe7, 0x1b, 0x78,
218 » 0xbc, 0xa6, 0x96, 0x81, 0xff, 0x5b, 0xbd, 0xf9, 0x15, 0x00, 0x00, 0xff, 0xff, 0x68, 0x96, 0x3b, 241 » 0x56, 0xb2, 0xfb, 0xef, 0x2d, 0x9b, 0xb4, 0x68, 0x96, 0xf8, 0xdf, 0xea, 0xc3, 0xaf, 0x00, 0x00,
219 » 0x9b, 0x97, 0x03, 0x00, 0x00, 242 » 0x00, 0xff, 0xff, 0x68, 0x96, 0x3b, 0x9b, 0x97, 0x03, 0x00, 0x00,
220 } 243 }
OLDNEW
« no previous file with comments | « tokenserver/api/admin/v1/config.proto ('k') | tokenserver/api/admin/v1/pb.discovery.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698