We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49b3978 commit 7f93ea5Copy full SHA for 7f93ea5
DynamoDbEncryption/dafny/StructuredEncryption/src/Header.dfy
@@ -62,7 +62,7 @@ module StructuredEncryptionHeader {
62
requires pos <= |data| as uint32
63
requires forall i | 0 <= i < pos :: data[i].action != SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT
64
decreases |data| as uint32 - pos
65
- ensures ret ==> (exists x <- data :: x.action == SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT)
+ ensures ret <==> (exists x <- data :: x.action == SIGN_AND_INCLUDE_IN_ENCRYPTION_CONTEXT)
66
{
67
if pos == |data| as uint32 then
68
false
0 commit comments