Class com.sekati.crypt.Rijndael

Implemented Interfaces

ICipher

Description

Encrypts and decrypts text with the Rijndael algorithm.

Field Index

blockSize, keySize

Method Index

new Rijndael()
decrypt(), encrypt()

Constructor Detail

Rijndael

public function Rijndael(keySize:Number, blockSize:Number)

Constructor

Field Detail

blockSize

public blockSize:Number

keySize

public keySize:Number

Method Detail

encrypt

public function encrypt(src:String, key:String, mode:String):String

Encrypts a string with the specified key and mode.

decrypt

public function decrypt(src:String, key:String, mode:String):String

Decrypts a string with the specified key and mode.