Class fever.data.crypt.Crypter

Description

Crypter class.

Method Index

new Crypter()
decrypt(), encrypt()

Constructor Detail

Crypter

public function Crypter(crypter:ICrypter)

Constructor.

Method Detail

encrypt

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

Encrypts passed-in value

A toString() is apply on value before.

decrypt

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

Decrypts passed-in value

A toString() is apply on value before.