feat(server): UserAgent seal/unseal

This commit is contained in:
hdbg
2026-02-15 14:26:48 +01:00
parent a55221573b
commit 281fbcb31d
19 changed files with 1735 additions and 442 deletions

View File

@@ -4,13 +4,17 @@ package arbiter.unseal;
import "google/protobuf/empty.proto";
message UnsealStart {}
message UnsealStart {
bytes client_pubkey = 1;
}
message UnsealStartResponse {
bytes pubkey = 1;
bytes server_pubkey = 1;
}
message UnsealEncryptedKey {
bytes key = 1;
bytes nonce = 1;
bytes ciphertext = 2;
bytes associated_data = 3;
}
enum UnsealResult {