mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
19 lines
360 B
Protocol Buffer
19 lines
360 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package verify;
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/v2/verify/verifyproto";
|
|
|
|
service API {
|
|
rpc GetAttestation(GetAttestationRequest) returns (GetAttestationResponse);
|
|
}
|
|
|
|
message GetAttestationRequest {
|
|
bytes user_data = 1;
|
|
bytes nonce = 2;
|
|
}
|
|
|
|
message GetAttestationResponse {
|
|
bytes attestation = 1;
|
|
}
|