Skip to content

Commit 7f93ea5

Browse files
committed
m
1 parent 49b3978 commit 7f93ea5

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

DynamoDbEncryption/dafny/StructuredEncryption/src/Header.dfy

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module StructuredEncryptionHeader {
6262
requires pos <= |data| as uint32
6363
requires forall i | 0 <= i < pos :: data[i].action != SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT
6464
decreases |data| as uint32 - pos
65-
ensures ret ==> (exists x <- data :: x.action == SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT)
65+
ensures ret <==> (exists x <- data :: x.action == SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT)
6666
{
6767
if pos == |data| as uint32 then
6868
false

0 commit comments

Comments
 (0)