mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
042f668d20
* 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>
19 lines
357 B
Protocol Buffer
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;
|
|
}
|