Skip to content

Instantly share code, notes, and snippets.

@YuukiTsuchida
YuukiTsuchida / Crypt.cs
Created April 14, 2014 17:11
C#でのAES暗号化 ECBモードとCBCモード
using System.IO;
using System.Collections;
using System.Security.Cryptography;
public class Crypt
{
private const string AesIV = @"8863d67c62113fb8";
private const string AesKey = @"2eeee02d3dc3ef6c";
public string EnCrypt( string text )