This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
'Option Explicit | |
' Rijndael.asp | |
' Copyright 2001 Phil Fresle | |
' [email protected] | |
' http://www.frez.co.uk | |
' Implementation of the AES Rijndael Block Cipher. Inspired by Mike Scott's | |
' implementation in C. Permission for free direct or derivative use is granted | |
' subject to compliance with any conditions that the originators of the | |
' algorithm place on its exploitation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
using System.ComponentModel; | |
using System.Threading; | |
using System.EnterpriseServices; | |
using System.Globalization; | |
namespace RijndaelNs | |
{ |