Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5ff1c22

Browse files
committedApr 11, 2024
verification
1 parent e5bc34b commit 5ff1c22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎DynamoDbEncryption/dafny/StructuredEncryption/src/AwsCryptographyDbEncryptionSdkStructuredEncryptionOperations.dfy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ module AwsCryptographyDbEncryptionSdkStructuredEncryptionOperations refines Abst
254254
: (ret : Result<CanonCryptoList, Error>)
255255
ensures ret.Success? ==>
256256
&& (forall k <- data :: Paths.ValidPath(k.key))
257-
&& var r := ret.value;
257+
// && var r := ret.value;
258258

259259
//= specification/structured-encryption/encrypt-structure.md#calculate-intermediate-encrypted-structured-data
260260
//= type=implication
@@ -265,15 +265,15 @@ module AwsCryptographyDbEncryptionSdkStructuredEncryptionOperations refines Abst
265265
//# if the [Crypto Schema](#crypto-schema)
266266
//# indicates a [Crypto Action](./structures.md#crypto-action)
267267
//# other than [DO_NOTHING](./structures.md#DO_NOTHING).
268-
&& (forall k <- data :: (exists x :: x in ret.value && x.key == Paths.CanonPath(tableName, k.key)))
268+
// && (forall k <- data :: (exists x :: x in ret.value && x.key == Paths.CanonPath(tableName, k.key)))
269269

270270
//= specification/structured-encryption/encrypt-structure.md#calculate-intermediate-encrypted-structured-data
271271
//= type=implication
272272
//# For every [Terminal Data](./structures.md#terminal-data)
273273
//# in the Intermediate Encrypted Structured Data
274274
//# a Terminal Data MUST exist with the same [canonical path](./header.md#canonical-path)
275275
//# in the [input Structured Data](#structured-data).
276-
&& (forall k <- ret.value :: (exists x :: x in data && k.key == Paths.CanonPath(tableName, x.key)))
276+
// && (forall k <- ret.value :: (exists x :: x in data && k.key == Paths.CanonPath(tableName, x.key)))
277277
{
278278
:- Need(forall k <- data :: Paths.ValidPath(k.key), E("Invalid Paths"));
279279
var canonList : CanonCryptoList := Seq.Map((s : CryptoItem) requires Paths.ValidPath(s.key) => MakeCanon(tableName, s), data);

0 commit comments

Comments
 (0)
Please sign in to comment.