-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Client Side Encryption to S3 client #3395
Comments
Hey, Thanks for citing my work here. FWIW my fork also has an (undocumented) async client available, and I was able use the Java SDK to decrypt what my Python lib encrypted (which was awesome to see). |
Thanks @frittentheke for the feature request. The cryptography team is working towards taking ownership of the S3 Encryption Client implementations in various languages. Supporting boto3 is on their roadmap but they don’t have a concrete timeline as of yet. |
Thanks for the quick and positive response! |
Hi @frittentheke thanks for following up. There is no public roadmap for this to my knowledge. But the Cryptography team said this feature isn't likely to be implemented in the immediate future. I recommend reaching out through AWS Support to seek more information as needed. |
How would support be able to help here @tim-finnigan? |
Hi @frittentheke - I suggested reaching out to AWS Support as that could help with establishing a more direct correspondence regarding this particular feature request going forward. The information passed on to me by the cryptography team was that this is on their roadmap but they don't yet have an official timeline, and as I mentioned this isn't something that is likely to prioritized in the near future. But if others share their use cases and how the lack of this feature is a blocker for them then it could help with escalating the priority. |
AWS Support has the same or actually less visibility and connection with cryptography team comparing with anyone this ticket. Reaching out AWS Support will not give the information that you are looking for. |
also for anyone found this issue post, s3crypto is supported in language like Go. AWS SDK for Go has two versions, V1 and V2. V1 is still supporting s3crypto while s3crypto is removed from V2 at the moment V1: https://docs.aws.amazon.com/sdk-for-go/api/service/s3/s3crypto/#pkg-overview V2 document when s3crypto was supported in V2: https://pkg.go.dev/github.com/aws/aws-sdk-go-v2@v0.20.0/service/s3/s3crypto |
I would appreciate if Python boto3 support would be given out of the box fox SDK. |
Another use case: Amazon SES's email receiving has a "message encryption" option for its "Deliver to S3 bucket" action. But it requires using an S3 encryption client to decrypt the S3 objects: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-action-s3.html. There is currently no AWS-supported Python option for using SES email receiving with S3 message encryption enabled. (And the third-party Python packages seem to be outdated.) |
Two years later, AWS Python SDK still lacks client side encryption with S3. Can't believe it! :-o |
FYI, my org has raised a feature request for this with our AWS rep |
Describe the feature
While there is support for client-side encryption in other popular language SDKs like Java, Go or C++ (https://docs.aws.amazon.com/general/latest/gr/aws_sdk_cryptography.html) for encrypting data before it's sent to AWS S3 this is not supported by boto3 (Python3).
The documentation does talk about using the
Encryption SDK
(https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingClientSideEncryption.html), but this is produces a different data format:(https://docs.aws.amazon.com/general/latest/gr/aws_sdk_cryptography.html)
Use Case
With no support for the otherwise common format for client side encryption, that is used for other language SDKs, it's not possible to e.g. write encrypted objects via Java and to read them back via a Python3 client using boto3.
Also there are quite a few tools using boto3 as S3 client library which would then allow for client side encryption to be used:
Proposed Solution
There have been attempts to wrap the boto3 client and to add client encryption externally, like
Proposed solution would be to have this feature natively provided by boto3 and to make the SDKs compatible in this regard.
Other Information
No response
Acknowledgements
SDK version used
any
Environment details (OS name and version, etc.)
Linux
The text was updated successfully, but these errors were encountered: