Skip to content

Instantly share code, notes, and snippets.

View nguyenntuong's full-sized avatar

Tuong Nguyen nguyenntuong

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Jake Albaugh">
<title>JUNO_OKYO</title>
</head>
<body>
<!-- Simple audio playback -->
@nguyenntuong
nguyenntuong / AesExample.cs
Created January 3, 2019 14:50 — forked from magicsih/AesExample.cs
AES Encryption/Decryption Example in C#
using System;
using System.Security.Cryptography;
using System.Text;
namespace AesExample
{
class Program
{
private const string ORIGINAL = "this is some data to encrypt";
private const string SAMPLE_KEY = "gCjK+DZ/GCYbKIGiAt1qCA==";