mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-21 05:07:29 +00:00
20 lines
417 B
Protocol Buffer
20 lines
417 B
Protocol Buffer
message GetTokenReqRaw {
|
|
required bytes signature = 1;
|
|
required bytes key = 2;
|
|
required bytes attributes = 3;
|
|
required uint32 timeout = 9;
|
|
}
|
|
|
|
message GetTokenReq {
|
|
required GetTokenReqRaw req = 3;
|
|
}
|
|
|
|
message GetTokenRetRaw {
|
|
required int32 error = 1;
|
|
optional bytes token = 2;
|
|
}
|
|
|
|
message GetTokenRet {
|
|
required GetTokenRetRaw ret = 3;
|
|
}
|