Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 3, 2022 19:08
Embed
What would you like to do?
kms Crypto AESEncrypter 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 AESEncrypter : IEncrypter
{
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 };
public async Task<IEncryptionPackage> Encrypt(string plainText)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment