We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f65d22 commit d8e20f1Copy full SHA for d8e20f1
.gitignore
@@ -32,7 +32,10 @@ __pycache__
32
# PyTest
33
.pytest_cache
34
# Ignore key materials generated by examples or tests
35
-test_keyrings
+user_public_key_file_name.pem
36
+user_private_key_file_name.pem
37
+my-encrypted-data.ct
38
+my-decrypted-data.dat
39
40
# PyCharm
41
.idea/
examples/src/keyrings/file_streaming_example.py
@@ -24,9 +24,9 @@
24
For more information on how to use Raw AES keyrings, see
25
https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/use-raw-aes-keyring.html
26
"""
27
+import filecmp
28
import secrets
29
import sys
-import filecmp
30
31
from aws_cryptographic_materialproviders.mpl import AwsCryptographicMaterialProviders
from aws_cryptographic_materialproviders.mpl.config import MaterialProvidersConfig
0 commit comments