Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow a data provider to specify a different certificate used in signing a direct result #171

Merged
merged 7 commits into from
Nov 6, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ message FulfillDirectRequisitionRequest {
// (-- api-linter: core::0141::forbidden-types=disabled
// aip.dev/not-precedent: This is a random 64-bit value. --)
fixed64 nonce = 3 [(google.api.field_behavior) = REQUIRED];

// Resource name of the `Certificate` belonging to the `DataProvider` that
// can be used to verify the result. If unspecified, the
// `data_provider_certificate` from the `Requisition` will be used.
string certificate = 4
[(google.api.resource_reference).type = "halo.wfanet.org/Certificate"];
}

// Response message for `FulfillDirectRequisition` method.
Expand Down
Loading