Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 3, 2022 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/85ba23efb789f3f73a78be35965254fb to your computer and use it in GitHub Desktop.
Save awswithdotnet/85ba23efb789f3f73a78be35965254fb to your computer and use it in GitHub Desktop.
kms Crypto AESDecrypter Partial
using System;
using System.IO;
using System.Security.Cryptography;
using System.Threading.Tasks;
using Abstractions;
using Amazon.KeyManagementService;
using Amazon.KeyManagementService.Model;
namespace Crypto
{
public class AESDecrypter : IDecrypter
{
private readonly string _keyId = "<your-key>";
private readonly byte[] _iv = new byte[] { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment