@@ -142,17 +142,17 @@ def encrypt(self, data: Any, provider_options: dict | None = None, **encryption_
142142
143143 Parameters
144144 -------
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.
151151
152152 Returns
153153 -------
154- ciphertext : str
155- The encrypted data, as a base64-encoded string.
154+ ciphertext: str
155+ The encrypted data, as a base64-encoded string.
156156 """
157157 provider_options = provider_options or {}
158158 self ._validate_encryption_context (encryption_context )
@@ -179,15 +179,15 @@ def decrypt(self, data: str, provider_options: dict | None = None, **encryption_
179179
180180 Parameters
181181 -------
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
186186
187187 Returns
188188 -------
189- ciphertext : bytes
190- The decrypted data in bytes
189+ ciphertext: bytes
190+ The decrypted data in bytes
191191 """
192192 provider_options = provider_options or {}
193193 self ._validate_encryption_context (encryption_context )
0 commit comments