Skip to content

Instantly share code, notes, and snippets.

View aknutman's full-sized avatar
💭
I may be slow to respond.

Eldest Pasirula aknutman

💭
I may be slow to respond.
View GitHub Profile
@aknutman
aknutman / AES.cs
Created July 30, 2021 03:06 — forked from mhingston/AES.cs
AES-256-CBC for C# and Node
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
class AES
{
public static string Encrypt(string plainText, string keyString)
{
byte[] cipherData;