Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 3, 2022 19:07
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/0bd959f4e843e3646c28cb25f13dc9b3 to your computer and use it in GitHub Desktop.
Save awswithdotnet/0bd959f4e843e3646c28cb25f13dc9b3 to your computer and use it in GitHub Desktop.
kms Crypto EncryptionPackage
using Abstractions;
namespace Crypto
{
public class EncryptionPackage : IEncryptionPackage
{
public string CipherText { get; set; }
public string EncryptedKey { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment