Skip to content

Commit 59862ee

Browse files
committed
format
1 parent c90ec36 commit 59862ee

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/SearchInfo.dfy

+8-8
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,10 @@ module SearchableEncryptionInfo {
275275
&& var newPutHistory := cache.History.PutCacheEntry;
276276
&& |newPutHistory| == |oldPutHistory|+1
277277
&& (
278-
var storeOutput := Seq.Last(newPutHistory).output;
279-
|| storeOutput.Success?
280-
|| storeOutput.error.EntryAlreadyExists?
281-
)
278+
var storeOutput := Seq.Last(newPutHistory).output;
279+
|| storeOutput.Success?
280+
|| storeOutput.error.EntryAlreadyExists?
281+
)
282282
&& var storeInput := Seq.Last(newPutHistory).input;
283283
&& var storeOutput := Seq.Last(newPutHistory).output;
284284
//= specification/searchable-encryption/search-config.md#get-beacon-key-materials
@@ -339,10 +339,10 @@ module SearchableEncryptionInfo {
339339
var beaconKeyMaterials := rawBeaconKeyMaterials.beaconKeyMaterials.(beaconKey := None, hmacKeys := Some(keyMap));
340340

341341
expect now < UInt.BoundedInts.INT64_MAX - cacheTTL;
342-
//= specification/searchable-encryption/search-config.md#get-beacon-key-materials
343-
//# These materials MUST be put into the associated [Key Store Cache](#key-store-cache)
344-
//# with an [Expiry Time](../../submodules/MaterialProviders/aws-encryption-sdk-specification/framework/cryptographic-materials-cache.md#expiry-time)
345-
//# equal to now + configured [cacheTTL](#cachettl).
342+
//= specification/searchable-encryption/search-config.md#get-beacon-key-materials
343+
//# These materials MUST be put into the associated [Key Store Cache](#key-store-cache)
344+
//# with an [Expiry Time](../../submodules/MaterialProviders/aws-encryption-sdk-specification/framework/cryptographic-materials-cache.md#expiry-time)
345+
//# equal to now + configured [cacheTTL](#cachettl).
346346
var putCacheEntryInput:= MP.PutCacheEntryInput(
347347
identifier := identifier,
348348
materials := MP.Materials.BeaconKey(beaconKeyMaterials),

0 commit comments

Comments
 (0)