From 7b1b6fa1cf00d7c632865ff981ee4e6850406e05 Mon Sep 17 00:00:00 2001 From: Chris Eager Date: Wed, 9 Oct 2024 13:30:08 -0500 Subject: [PATCH] Update KeyTransparencyService.proto with MonitorKey.commitment_index --- service/src/main/proto/KeyTransparencyService.proto | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/service/src/main/proto/KeyTransparencyService.proto b/service/src/main/proto/KeyTransparencyService.proto index 50fb06479..63b63a1a5 100644 --- a/service/src/main/proto/KeyTransparencyService.proto +++ b/service/src/main/proto/KeyTransparencyService.proto @@ -43,7 +43,7 @@ message ConsistencyParameters { /** * The distinguished tree head size to prove consistency against. * This field may be omitted when the client is looking up the - * "distinguished" key for the very first time. + * "distinguished" key for the very first time. */ optional uint64 distinguished = 2; } @@ -217,6 +217,11 @@ message MonitorKey { * in the corresponding MonitorProof. */ repeated uint64 entries = 2; + /** + * The commitment index for the search key. This is derived from vrf_proof in + * the SearchResponse. + */ + bytes commitment_index = 3; } @@ -269,4 +274,3 @@ message MonitorResponse { */ repeated bytes inclusion = 4; } -