Skip to content

Commit 3b71365

Browse files
committed
m
1 parent 8ec3cd5 commit 3b71365

File tree

1 file changed

+1
-1
lines changed
  • DynamoDbEncryption/dafny/DynamoDbEncryption/src

1 file changed

+1
-1
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/Beacon.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ module BaseBeacon {
294294
//= specification/searchable-encryption/beacons.md#value-for-a-non-set-standard-beacon
295295
//= type=implication
296296
//# * This operation MUST return the [basicHash](#basichash) of the resulting bytes and the configured [beacon length](#beacon-length).
297-
&& (bytes.Some? ==> ret.value.Some? && base.hash(bytes.value, key, length, bucket).Success? && ret.value.value == DDB.AttributeValue.S(base.hash(bytes.value, key, length, bucket).value))
297+
&& (bytes.Some? ==> ret.value.Some? && base.hash(bytes.value, key, length, constrained_bucket(bucket)).Success? && ret.value.value == DDB.AttributeValue.S(base.hash(bytes.value, key, length, constrained_bucket(bucket)).value))
298298
{
299299
var bytes :- VirtToBytes(loc, item, vf);
300300
if bytes.None? then

0 commit comments

Comments
 (0)