Replies: 1 comment
-
Got into the same issue. A possible solution is to disable the warning at runtime. // Report all errors except E_WARNING (deprecation notices)
error_reporting(E_ERROR & ~E_WARNING); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an issue with this code when trying to decrypt a SES encrypted email with client-side encryption.
aws-sdk-php/src/S3/Crypto/S3EncryptionClientV2.php
Lines 338 to 349 in 0b9277a
The method I am calling is getObjectAsync() which promises to return an object from S3 and decrypt the data in the 'Body' field.
Instead, I get an error message triggered by the code above.
Even though I Explicitly defined the
'@SecurityProfile' => 'V2_AND_LEGACY'
In this scenario what am I supposed to do to prevent this error from stopping my code and decrypting the message.
Is there a way to make SES use the V2 encryption mode?
FYI: I am using the example code
Beta Was this translation helpful? Give feedback.
All reactions