constellation/verify/verifyproto/verify.proto
Daniel Weiße 042f668d20 AB#2190 Verification service (#232)
* Add verification service

* Update verify command to use new Constellation verification service

* Deploy verification service on cluster init

* Update pcr-reader to use verification service

* Add verification service build workflow

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-28 17:03:28 +02:00

19 lines
357 B
Protocol Buffer

syntax = "proto3";
package verify;
option go_package = "github.com/edgelesssys/constellation/verify/verifyproto";
service API {
rpc GetAttestation(GetAttestationRequest) returns (GetAttestationResponse);
}
message GetAttestationRequest {
bytes user_data = 1;
bytes nonce = 2;
}
message GetAttestationResponse {
bytes attestation = 1;
}