feat(auth): implement bootstrap token auth handling

This commit is contained in:
hdbg
2026-02-13 13:41:01 +01:00
parent 208bbbd540
commit 832d884457
4 changed files with 102 additions and 66 deletions

View File

@@ -5,10 +5,8 @@ package arbiter.auth;
import "google/protobuf/timestamp.proto";
message AuthChallengeRequest {
oneof payload {
bytes pubkey = 1;
string bootstrap_token = 2;
}
bytes pubkey = 1;
optional string bootstrap_token = 2;
}
message AuthChallenge {