Skip to content

Commit 434e8bc

Browse files
wip
1 parent a5ecc47 commit 434e8bc

File tree

7 files changed

+2
-7
lines changed

7 files changed

+2
-7
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ Finally, while the ``CryptoMaterialsCache`` is thread safe,
449449
sharing entries in that cache across threads needs to be done carefully
450450
(see the !Note about partition name `in the API Docs <https://aws-encryption-sdk-python.readthedocs.io/en/latest/generated/aws_encryption_sdk.materials_managers.caching.html#aws_encryption_sdk.materials_managers.caching.CachingCryptoMaterialsManager>`_).
451451

452-
**Important:** Components from the `AWS Cryptographic Material Providers Library (MPL)`_ have separate thread safety considerations.
452+
**Important:** Components from the `AWS Cryptographic Material Providers Library (MPL)`_
453+
have separate thread safety considerations.
453454
For more information, see the note on thread safety in that project's README.
454455

455456

src/aws_encryption_sdk/key_providers/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
InvalidKeyIdError,
2626
MasterKeyProviderError,
2727
)
28-
from aws_encryption_sdk.internal.deprecation import deprecated
2928
from aws_encryption_sdk.internal.str_ops import to_bytes
3029
from aws_encryption_sdk.structures import MasterKeyInfo
3130

src/aws_encryption_sdk/key_providers/kms.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
)
3636
from aws_encryption_sdk.identifiers import USER_AGENT_SUFFIX
3737
from aws_encryption_sdk.internal.arn import arn_from_str, is_valid_mrk_identifier
38-
from aws_encryption_sdk.internal.deprecation import deprecated
3938
from aws_encryption_sdk.internal.str_ops import to_str
4039
from aws_encryption_sdk.key_providers.base import MasterKey, MasterKeyConfig, MasterKeyProvider, MasterKeyProviderConfig
4140
from aws_encryption_sdk.structures import DataKey, EncryptedDataKey, MasterKeyInfo

src/aws_encryption_sdk/key_providers/raw.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import aws_encryption_sdk.internal.formatting.serialize
2323
from aws_encryption_sdk.identifiers import EncryptionType
2424
from aws_encryption_sdk.internal.crypto.wrapping_keys import WrappingKey
25-
from aws_encryption_sdk.internal.deprecation import deprecated
2625
from aws_encryption_sdk.key_providers.base import MasterKey, MasterKeyConfig, MasterKeyProvider, MasterKeyProviderConfig
2726
from aws_encryption_sdk.structures import DataKey, RawDataKey
2827

src/aws_encryption_sdk/materials_managers/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
import six
1717

18-
from ..internal.deprecation import deprecated
1918

2019

2120
@six.add_metaclass(abc.ABCMeta)

src/aws_encryption_sdk/materials_managers/caching.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
from ..caches.base import CryptoMaterialsCache
2626
from ..exceptions import CacheKeyError
2727
from ..internal.defaults import MAX_BYTES_PER_KEY, MAX_MESSAGES_PER_KEY
28-
from ..internal.deprecation import deprecated
2928
from ..internal.str_ops import to_bytes
3029
from ..key_providers.base import MasterKeyProvider
3130
from . import EncryptionMaterialsRequest

src/aws_encryption_sdk/materials_managers/default.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from ..internal.crypto.authentication import Signer, Verifier
2121
from ..internal.crypto.elliptic_curve import generate_ecc_signing_key
2222
from ..internal.defaults import ALGORITHM, ALGORITHM_COMMIT_KEY, ENCODED_SIGNER_KEY
23-
from ..internal.deprecation import deprecated
2423
from ..internal.str_ops import to_str
2524
from ..internal.utils import prepare_data_keys
2625
from ..internal.utils.commitment import validate_commitment_policy_on_decrypt, validate_commitment_policy_on_encrypt

0 commit comments

Comments
 (0)