Class fever.data.crypt.RC4

Implemented Interfaces

ICrypter

Description

RC4 string encryption.

Orignal ActionScript 2.0 implementation by Mika Palmu in his AsCrypt library, available in http://www.meychi.com/

Method Index

decrypt(), encrypt(), getProcess()

Method Detail

getProcess

static public function getProcess():ICrypter

Returns the RC4 crypter.

encrypt

public function encrypt(value, key:String):String

Encrypts a string with the specified key.

Specified By

encrypt() in fever.data.crypt.ICrypter

decrypt

public function decrypt(value, key:String):String

Decrypts a string with the specified key.

Specified By

decrypt() in fever.data.crypt.ICrypter