File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
DynamoDbEncryption/dafny/StructuredEncryption/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -663,10 +663,10 @@ module {:options "/functionSyntax:4" } Canonize {
663
663
requires forall val < - input :: exists x :: x in origData && Updated2 (x, val, DoDecrypt)
664
664
ensures forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2 (x, input[i], DoDecrypt)
665
665
{
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
+ // }
670
670
assume {:axiom} forall i | 0 <= i < |input| :: exists x :: x in origData && Updated2 (x, input[i], DoDecrypt);
671
671
}
672
672
You can’t perform that action at this time.
0 commit comments