Skip to content

Commit 7ba8315

Browse files
committed
m
1 parent 69bafbc commit 7ba8315

File tree

1 file changed

+4
-4
lines changed
  • DynamoDbEncryption/dafny/StructuredEncryption/src

1 file changed

+4
-4
lines changed

DynamoDbEncryption/dafny/StructuredEncryption/src/Canonize.dfy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -663,10 +663,10 @@ module {:options "/functionSyntax:4" } Canonize {
663663
requires forall val <- input :: exists x :: x in origData && Updated2(x, val, DoDecrypt)
664664
ensures forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt)
665665
{
666-
assert forall i | 0 <= i < |input| :: input[i] in input;
667-
forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
668-
var x :| x in origData && Updated2(x, input[i], DoDecrypt);
669-
}
666+
// assert forall i | 0 <= i < |input| :: input[i] in input;
667+
// forall i | 0 <= i < |input| ensures exists x :: x in origData && Updated2(x, input[i], DoDecrypt) {
668+
// var x :| x in origData && Updated2(x, input[i], DoDecrypt);
669+
// }
670670
assume {:axiom} forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2(x, input[i], DoDecrypt);
671671
}
672672

0 commit comments

Comments
 (0)