i have a question about this post where answer is present:
PHP + Android XML Encryption/Decryption
is this rijndael encryption algorithm ? or an innovative one ?
if it is innovative , then how much reliable it is ?
thanks
i have a question about this post where answer is present:
PHP + Android XML Encryption/Decryption
is this rijndael encryption algorithm ? or an innovative one ?
if it is innovative , then how much reliable it is ?
thanks
Yes, that's AES (Rijndael) 128 used in CBC mode -- a good choice (not the best, still good).
However, that is not encryption at all, because the key is hardcoded inside the program. I would call it obfuscation. In fact, you can hide the hardcoded key as much as you want, but be assured that someone with enough determination will find it.