Skip to content

Instantly share code, notes, and snippets.

View MichaelTaylor3D's full-sized avatar
🎯
Focusing

Michael Taylor MichaelTaylor3D

🎯
Focusing
View GitHub Profile
@MichaelTaylor3D
MichaelTaylor3D / AES-GCM-File.cs
Created May 4, 2020 01:02 — forked from HirbodBehnam/AES-GCM-File.cs
A simple program to encrypt and decrypt a file using AES-GCM and Bouncy Castle
using System;
using System.IO;
using Org.BouncyCastle.Crypto.Engines;
using Org.BouncyCastle.Crypto.Modes;
using Org.BouncyCastle.Crypto.Parameters;
namespace TestConsole
{
class Program