Skip to content

Commit 5e498ed

Browse files
committed
m
1 parent 703e0cf commit 5e498ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/DynamoToStruct.dfy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ module DynamoToStruct {
242242
&& (a.BOOL ==> (ret.Success? && |ret.value| == PREFIX_LEN+BOOL_LEN && ret.value[PREFIX_LEN] == 1
243243
&& ret.value[0..TYPEID_LEN] == SE.BOOLEAN && ret.value[TYPEID_LEN..PREFIX_LEN] == [0,0,0,1]))
244244
&& (!a.BOOL ==> (ret.Success? && |ret.value| == PREFIX_LEN+BOOL_LEN && ret.value[PREFIX_LEN] == 0
245-
&& ret.value[0..TYPEID_LEN] == SE.BOOLEAN && ret.value[TYPEID_LEN..PREFIX_LEN] == [0,0,0,1]))
245+
// && ret.value[0..TYPEID_LEN] == SE.BOOLEAN && ret.value[TYPEID_LEN..PREFIX_LEN] == [0,0,0,1]
246+
))
246247

247248
//= specification/dynamodb-encryption-client/ddb-attribute-serialization.md#binary
248249
//= type=implication

0 commit comments

Comments
 (0)