0

I'm trying to implement Data Key Caching for AWS on .NET. I've seen that Java has an implementation of LocalCryptoMaterialsCache which I cannot find for C#. The ideia is to use this so I can send less request to KMS when inserting or retrieving an object from S3.

I was just wondering is anyone was able to achieve this?

Thank you guys!

Ricardo Mota
  • 1,194
  • 2
  • 12
  • 25

1 Answers1

0

There is no such class for C# yet, because that class is part of the AWS Encryption SDK, and that SDK is only (currently) provided in Java and Python (source). If you're feeling adventurous, though, the code is public and on Github.

Viccari
  • 9,029
  • 4
  • 43
  • 77