Skip to content

Commit b61e6aa

Browse files
committed
feedback
1 parent 16226e1 commit b61e6aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Examples/runtimes/python/DynamoDBEncryption/src/keyring/raw_ecdh_keyring_example/with_encrypted_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
)
4747

4848

49-
def raw_ecdh_keyring_get_item_put_item_with_ecnrypted_client(ddb_table_name: str, curve_spec: str):
49+
def raw_ecdh_keyring_get_item_put_item_with_encrypted_client(ddb_table_name: str, curve_spec: str):
5050
"""
5151
Demonstrate using a raw ECDH keyring with static keys.
5252

Examples/runtimes/python/DynamoDBEncryption/test/keyring/raw_ecdh_keyring_example/test_with_encrypted_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ....src.keyring.raw_ecdh_keyring_example.with_encrypted_client import (
1212
discovery_raw_ecdh_keyring_get_item_with_ecnrypted_client,
1313
ephemeral_raw_ecdh_keyring_put_item_with_ecnrypted_client,
14-
raw_ecdh_keyring_get_item_put_item_with_ecnrypted_client,
14+
raw_ecdh_keyring_get_item_put_item_with_encrypted_client,
1515
)
1616
from ...test_utils import TEST_DDB_TABLE_NAME
1717

@@ -31,7 +31,7 @@ def test_raw_ecdh_keyring_get_item_put_item():
3131

3232
# Part of using these keyrings is knowing which curve the keys used in the key agreement
3333
# lie on. The keyring will fail if the keys do not lie on the configured curve.
34-
raw_ecdh_keyring_get_item_put_item_with_ecnrypted_client(TEST_DDB_TABLE_NAME, ECDHCurveSpec.ECC_NIST_P256)
34+
raw_ecdh_keyring_get_item_put_item_with_encrypted_client(TEST_DDB_TABLE_NAME, ECDHCurveSpec.ECC_NIST_P256)
3535

3636

3737
def test_ephemeral_raw_ecdh_keyring_put_item():

0 commit comments

Comments
 (0)