@@ -33,7 +33,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
33
33
import DynamoDbItemEncryptor
34
34
35
35
36
- const DEFAULT_KEYS := ".. / .. / .. / submodules/ MaterialProviders/ TestVectorsAwsCryptographicMaterialProviders/ dafny/ TestVectorsAwsCryptographicMaterialProviders/ test/ keys. json"
36
+ const DEFAULT_KEYS : string : = ".. / .. / .. / submodules/ MaterialProviders/ TestVectorsAwsCryptographicMaterialProviders/ dafny/ TestVectorsAwsCryptographicMaterialProviders/ test/ keys. json"
37
37
38
38
predicate IsValidInt32 (x: int ) { - 0x8000_0000 <= x < 0x8000_0000}
39
39
type ConfigName = string
@@ -298,7 +298,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
298
298
299
299
var keys :- expect KeyVectors. KeyVectors (
300
300
KeyVectorsTypes.KeyVectorsConfig(
301
- keyManifiestPath := DEFAULT_KEYS
301
+ keyManifestPath := DEFAULT_KEYS
302
302
)
303
303
);
304
304
var keyDescription :-
@@ -311,7 +311,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
311
311
.MapFailure (ParseJsonManifests.ErrorToString);
312
312
Success (keyOut.keyDescription);
313
313
314
- var keyring :- expect keys. CreateWappedTestVectorKeyring (KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
314
+ var keyring :- expect keys. CreateWrappedTestVectorKeyring (KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
315
315
316
316
var encryptorConfig :=
317
317
ENC. DynamoDbItemEncryptorConfig (
@@ -402,7 +402,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
402
402
403
403
var keys :- expect KeyVectors. KeyVectors (
404
404
KeyVectorsTypes.KeyVectorsConfig(
405
- keyManifiestPath := DEFAULT_KEYS
405
+ keyManifestPath := DEFAULT_KEYS
406
406
)
407
407
);
408
408
var keyDescription :-
@@ -415,7 +415,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
415
415
.MapFailure (ParseJsonManifests.ErrorToString);
416
416
Success (keyOut.keyDescription);
417
417
418
- var keyring :- expect keys. CreateWappedTestVectorKeyring (KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
418
+ var keyring :- expect keys. CreateWrappedTestVectorKeyring (KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
419
419
420
420
var config :=
421
421
Types. DynamoDbTableEncryptionConfig (
0 commit comments