Skip to content

Commit dc0e77c

Browse files
committed
m
1 parent 96df3d5 commit dc0e77c

File tree

3 files changed

+4
-17
lines changed

3 files changed

+4
-17
lines changed

DynamoDbEncryption/codegen-patches/DynamoDbItemEncryptor/dafny/dafny-4.2.0.patch

-13
This file was deleted.

DynamoDbEncryption/dafny/DynamoDbItemEncryptor/Model/AwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorTypes.dfy

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ abstract module AbstractAwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorServi
170170
import opened Types = AwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorTypes
171171
import Operations : AbstractAwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorOperations
172172
function method DefaultDynamoDbItemEncryptorConfig(): DynamoDbItemEncryptorConfig
173-
method {:vcs_split_on_every_assert} DynamoDbItemEncryptor(config: DynamoDbItemEncryptorConfig := DefaultDynamoDbItemEncryptorConfig())
173+
method DynamoDbItemEncryptor(config: DynamoDbItemEncryptorConfig := DefaultDynamoDbItemEncryptorConfig())
174174
returns (res: Result<DynamoDbItemEncryptorClient, Error>)
175175
requires config.keyring.Some? ==>
176176
config.keyring.value.ValidState()

DynamoDbEncryption/dafny/DynamoDbItemEncryptor/src/Index.dfy

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ module
222222
+ internalConfig.cmpClient.Modifies;
223223

224224
assume {:axiom} fresh(client.Modifies
225-
- ( if config.keyring.Some? then config.keyring.value.Modifies else {})
226-
- ( if config.cmm.Some? then config.cmm.value.Modifies else {} )
227-
- ( if config.legacyOverride.Some? then config.legacyOverride.value.encryptor.Modifies else {}));
225+
- ( if config.keyring.Some? then config.keyring.value.Modifies else {})
226+
- ( if config.cmm.Some? then config.cmm.value.Modifies else {} )
227+
- ( if config.legacyOverride.Some? then config.legacyOverride.value.encryptor.Modifies else {}));
228228

229229
return Success(client);
230230
}

0 commit comments

Comments
 (0)