Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The LUCI Authors. All rights reserved. | |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | |
| 3 // that can be found in the LICENSE file. | |
| 4 | |
| 5 syntax = "proto3"; | |
| 6 | |
| 7 package tokenserver; | |
| 8 | |
| 9 import "google/protobuf/timestamp.proto"; | |
| 10 | |
| 11 | |
| 12 // OAuthTokenGrantBody contains the internal guts of an oauth token grant. | |
| 13 // | |
| 14 // It gets serialized, signed and stuffed into OAuthTokenGrantEnvelope, which | |
| 15 // then also gets serialized to get the final blob with the grant. This blob is | |
| 16 // then base64-encoded and returned to the caller of MintOAuthTokenGrant. | |
| 17 message OAuthTokenGrantBody { | |
| 18 // Identifier of this token as generated by the token server. | |
| 19 // | |
| 20 // Used for logging and tracking purposes. | |
| 21 // | |
| 22 // TODO(vadimsh): It may later be used for revocation purposes. | |
| 23 int64 subtoken_id = 1; | |
|
nodir
2017/04/03 22:51:55
grant_id?
Vadim Sh.
2017/07/28 22:44:46
Renamed to token_id.
| |
| 24 | |
| 25 // Service account identity the end user wants to act as. | |
| 26 // | |
| 27 // A string of the form "user:<email>". | |
| 28 string service_account = 2; | |
| 29 | |
| 30 // Who requested this token and who can pass it to MintOAuthTokenViaGrant. | |
| 31 // | |
| 32 // A string of the form "user:<email>". On Swarming, this is Swarming's own | |
| 33 // service account name. | |
| 34 string wielder_identity = 3; | |
| 35 | |
| 36 // An end user that wants to act as the service account (perhaps indirectly). | |
| 37 // | |
| 38 // A string of the form "user:<email>". On Swarming, this is an identity of | |
| 39 // a user that posted the task. | |
| 40 string end_user_identity = 4; | |
| 41 | |
| 42 // When the token was generated (and when it becomes valid). | |
| 43 google.protobuf.Timestamp issued_at = 5; | |
| 44 | |
| 45 // How long the token is considered valid (in seconds). | |
| 46 // | |
| 47 // It may become invalid sooner if the token server policy changes and the | |
| 48 // new policy doesn't allow this token. | |
| 49 int64 validity_duration = 6; | |
| 50 } | |
| 51 | |
| 52 | |
| 53 // OAuthTokenGrantEnvelope is what is actually being serialized and send to | |
| 54 // the callers of MintOAuthTokenGrant (after being encoded using base64 standard | |
| 55 // raw encoding). | |
| 56 message OAuthTokenGrantEnvelope { | |
| 57 bytes token_body = 1; // serialized OAuthTokenGrantBody | |
| 58 string key_id = 2; // id of a token server private key used for signi ng | |
| 59 bytes pkcs1_sha256_sig = 3; // signature of 'token_body' | |
| 60 } | |
| OLD | NEW |