feat(server): UserAgent auth flow implemented

This commit is contained in:
hdbg
2026-02-14 13:02:33 +01:00
parent ffa60c90b1
commit 069a997691
12 changed files with 239 additions and 98 deletions

View File

@@ -11,13 +11,11 @@ message AuthChallengeRequest {
message AuthChallenge {
bytes pubkey = 1;
bytes nonce = 2;
google.protobuf.Timestamp minted = 3;
int32 nonce = 2;
}
message AuthChallengeSolution {
AuthChallenge challenge = 1;
bytes signature = 2;
bytes signature = 1;
}
message AuthOk {}