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 1937d63

Browse files
committedApr 29, 2024··
typos
1 parent 6a703de commit 1937d63

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎TestVectors/dafny/DDBEncryption/src/JsonConfig.dfy

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
3333
import DynamoDbItemEncryptor
3434

3535

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"
3737

3838
predicate IsValidInt32(x: int) { -0x8000_0000 <= x < 0x8000_0000}
3939
type ConfigName = string
@@ -298,7 +298,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
298298

299299
var keys :- expect KeyVectors.KeyVectors(
300300
KeyVectorsTypes.KeyVectorsConfig(
301-
keyManifiestPath := DEFAULT_KEYS
301+
keyManifestPath := DEFAULT_KEYS
302302
)
303303
);
304304
var keyDescription :-
@@ -311,7 +311,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
311311
.MapFailure(ParseJsonManifests.ErrorToString);
312312
Success(keyOut.keyDescription);
313313

314-
var keyring :- expect keys.CreateWappedTestVectorKeyring(KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
314+
var keyring :- expect keys.CreateWrappedTestVectorKeyring(KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
315315

316316
var encryptorConfig :=
317317
ENC.DynamoDbItemEncryptorConfig(
@@ -402,7 +402,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
402402

403403
var keys :- expect KeyVectors.KeyVectors(
404404
KeyVectorsTypes.KeyVectorsConfig(
405-
keyManifiestPath := DEFAULT_KEYS
405+
keyManifestPath := DEFAULT_KEYS
406406
)
407407
);
408408
var keyDescription :-
@@ -415,7 +415,7 @@ module {:options "-functionSyntax:4"} JsonConfig {
415415
.MapFailure(ParseJsonManifests.ErrorToString);
416416
Success(keyOut.keyDescription);
417417

418-
var keyring :- expect keys.CreateWappedTestVectorKeyring(KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
418+
var keyring :- expect keys.CreateWrappedTestVectorKeyring(KeyVectorsTypes.TestVectorKeyringInput(keyDescription := keyDescription));
419419

420420
var config :=
421421
Types.DynamoDbTableEncryptionConfig(

0 commit comments

Comments
 (0)
Please sign in to comment.