Skip to content

Instantly share code, notes, and snippets.

View ledunguit's full-sized avatar

ZeD ledunguit

  • LD
View GitHub Profile
@ledunguit
ledunguit / AES.cs
Created August 21, 2021 13:25 — 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;