Problem
- Our producer is java based which uses AesKeyRIng with
S3EncryptionClient to encrypt data.
- But our consumer side requiring to decrypt data is in Python. However, Python does not contain
AesKeyRing equivalent.
We use AesKeyRing to generate DataKeys with our own WrappingKey generator , which is NOT KMS. This is a hard requirement for us and AesKeyRing unblocked us in java. However, we are blocked in python as its not available.
I wanted to raise this request to the team to implement a python version of AesKeyRing , so that we can be unblocked.
Problem
S3EncryptionClientto encrypt data.AesKeyRingequivalent.We use AesKeyRing to generate DataKeys with our own WrappingKey generator , which is NOT KMS. This is a hard requirement for us and
AesKeyRingunblocked us in java. However, we are blocked in python as its not available.I wanted to raise this request to the team to implement a python version of
AesKeyRing, so that we can be unblocked.