@@ -142,17 +142,17 @@ def encrypt(self, data: Any, provider_options: dict | None = None, **encryption_
142
142
143
143
Parameters
144
144
-------
145
- data : Any
146
- The data to be encrypted.
147
- provider_options : dict
148
- Additional options for the aws_encryption_sdk.EncryptionSDKClient
149
- **encryption_context : str
150
- Additional keyword arguments collected into a dictionary.
145
+ data: Any
146
+ The data to be encrypted.
147
+ provider_options: dict
148
+ Additional options for the aws_encryption_sdk.EncryptionSDKClient
149
+ **encryption_context: str
150
+ Additional keyword arguments collected into a dictionary.
151
151
152
152
Returns
153
153
-------
154
- ciphertext : str
155
- The encrypted data, as a base64-encoded string.
154
+ ciphertext: str
155
+ The encrypted data, as a base64-encoded string.
156
156
"""
157
157
provider_options = provider_options or {}
158
158
self ._validate_encryption_context (encryption_context )
@@ -179,15 +179,15 @@ def decrypt(self, data: str, provider_options: dict | None = None, **encryption_
179
179
180
180
Parameters
181
181
-------
182
- data : str
183
- The encrypted data, as a base64-encoded string
184
- provider_options
185
- Additional options for the aws_encryption_sdk.EncryptionSDKClient
182
+ data: str
183
+ The encrypted data, as a base64-encoded string
184
+ provider_options
185
+ Additional options for the aws_encryption_sdk.EncryptionSDKClient
186
186
187
187
Returns
188
188
-------
189
- ciphertext : bytes
190
- The decrypted data in bytes
189
+ ciphertext: bytes
190
+ The decrypted data in bytes
191
191
"""
192
192
provider_options = provider_options or {}
193
193
self ._validate_encryption_context (encryption_context )
0 commit comments