Encrypting and Decrypting text

I’d really like to use some encrypting/decrypting algorithms in ActionScript 3.0,
I have found this one: http://code.google.com/p/as3crypto/

However, I have problems using it.
I can encrypt and decrypt, ok.
But when I set the output to an old encrypted value and try to decrypt, it fails.

Also, I cannot use the data received from a PHP encryption to Flash and decrypt it in Flash, but the PHP encryption itself seems to be running smoothly:
http://www.zomis.net/test/phptests/crypt/test32.php

All needed files except the AS3crypto package attached
I made some small modifications from the original AESCipher.class.php file (available on some PHP site), just added a few functions.

I want to have some kind of encryption which can be transfered from my computer with a Flash application, to a PHP page and decrypted in PHP, and the encrypted text sent back to my computer again and decrypted there.

It seems like there is some kind of bug in the AS3crypto package, since it doesn’t generate the same value over and over again as PHP does?

Are there other encrypting classes avalible than AES which work on both Flash and PHP?