diffs: - full diff:af34b94a78...6c0a036dce- full diff:4d1f260e84...v0.8.0-rc2 New dependencies: - go.opencensus.io v0.22.3 - github.com/containerd/typeurl v1.0.1 - github.com/golang/groupcache 869f871628b6baa9cfbc11732cdf6546b17c1298 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
55 lines
1.1 KiB
Protocol Buffer
55 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.filesync.v1;
|
|
|
|
option go_package = "auth";
|
|
|
|
service Auth{
|
|
rpc Credentials(CredentialsRequest) returns (CredentialsResponse);
|
|
rpc FetchToken(FetchTokenRequest) returns (FetchTokenResponse);
|
|
rpc GetTokenAuthority(GetTokenAuthorityRequest) returns (GetTokenAuthorityResponse);
|
|
rpc VerifyTokenAuthority(VerifyTokenAuthorityRequest) returns (VerifyTokenAuthorityResponse);
|
|
}
|
|
|
|
message CredentialsRequest {
|
|
string Host = 1;
|
|
}
|
|
|
|
message CredentialsResponse {
|
|
string Username = 1;
|
|
string Secret = 2;
|
|
}
|
|
|
|
message FetchTokenRequest {
|
|
string ClientID = 1;
|
|
string Host = 2;
|
|
string Realm = 3;
|
|
string Service = 4;
|
|
repeated string Scopes = 5;
|
|
}
|
|
|
|
message FetchTokenResponse {
|
|
string Token = 1;
|
|
int64 ExpiresIn = 2; // seconds
|
|
int64 IssuedAt = 3; // timestamp
|
|
}
|
|
|
|
message GetTokenAuthorityRequest {
|
|
string Host = 1;
|
|
bytes Salt = 2;
|
|
}
|
|
|
|
message GetTokenAuthorityResponse {
|
|
bytes PublicKey = 1;
|
|
}
|
|
|
|
message VerifyTokenAuthorityRequest {
|
|
string Host = 1;
|
|
bytes Payload = 2;
|
|
bytes Salt = 3;
|
|
}
|
|
|
|
message VerifyTokenAuthorityResponse {
|
|
bytes Signed = 1;
|
|
}
|