xxtea

block TEA in c#

Using block tea (XXTEA), how can I convert encrypted text into human readable form? string encryptedText = "ASDFSDAFSADFSDFSDFSDAF"; (assume it is in correct format) I have the key/pwd also. ...

How to implement XXTEA in MySQL?

Anyone knows how to implement XXTEA in MySQL? For example - SELECT xxtea_encrypt('text here', 'key here'); possible implementation is by creating a FUNCTION in MySQL using CREATE FUNCTION statement, e.g. CREATE FUNCTION xxtea_encrypt XXTEA Procedures here... RETURN encrypted string Thanks & Best regards ...