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
@mhingston
mhingston / AES.cs
Last active November 9, 2023 04:48
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;