Skip to content

Commit 893b4f9

Browse files
lucasmcdonald3josecorella
authored andcommitted
python
1 parent 7574c61 commit 893b4f9

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

AwsEncryptionSDK/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ ENABLE_EXTERN_PROCESSING=1
55

66
TRANSPILE_TESTS_IN_RUST := 1
77

8-
ENABLE_EXTERN_PROCESSING=1
9-
108
include ../SharedMakefileV2.mk
119

1210
DIR_STRUCTURE_V2=V2

AwsEncryptionSDK/dafny/AwsEncryptionSdk/Model/AwsCryptographyEncryptionSdkTypes.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
include "../../../../mpl/StandardLibrary/src/Index.dfy"
55
include "../../../../mpl/AwsCryptographicMaterialProviders/dafny/AwsCryptographicMaterialProviders/src/Index.dfy"
66
include "../../../../mpl/AwsCryptographyPrimitives/src/Index.dfy"
7-
module AwsCryptographyEncryptionSdkTypes
7+
module {:extern "software.amazon.cryptography.encryptionsdk.internaldafny.types" } AwsCryptographyEncryptionSdkTypes
88
{
99
import opened Wrappers
1010
import opened StandardLibrary.UInt

AwsEncryptionSDK/runtimes/python/src/aws_encryption_sdk/smithygenerated/aws_cryptography_encryptionsdk/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ class AwsEncryptionSdkConfig(Config):
5959

6060
def __init__(
6161
self,
62-
commitment_policy: Optional[str] = None,
6362
max_encrypted_data_keys: int,
63+
commitment_policy: Optional[str] = None,
6464
net_v4_0_0_retry_policy: Optional[str] = None,
6565
):
6666
"""Constructor for AwsEncryptionSdkConfig.

AwsEncryptionSDK/runtimes/python/src/aws_encryption_sdk/smithygenerated/aws_cryptography_encryptionsdk/dafnyImplInterface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33
# Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
44

5-
from aws_encryption_sdk.internaldafny.generated.ESDK import ESDKClient
5+
from aws_encryption_sdk.internaldafny.generated.EncryptionSdk import ESDKClient
66
from .dafny_protocol import DafnyRequest
77

88

AwsEncryptionSDK/runtimes/python/src/aws_encryption_sdk/smithygenerated/aws_cryptography_encryptionsdk/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def set_config_impl(config: Config):
2020
"""
2121
config.dafnyImplInterface = DafnyImplInterface()
2222
if isinstance(config, AwsEncryptionSdkConfig):
23-
from aws_encryption_sdk.internaldafny.generated.ESDK import default__
23+
from aws_encryption_sdk.internaldafny.generated.EncryptionSdk import default__
2424

2525
config.dafnyImplInterface.impl = default__.ESDK(
2626
smithy_config_to_dafny_config(config)

0 commit comments

Comments
 (0)