How to implement XXTEA in MySQL?

170 Views Asked by At

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

0

There are 0 best solutions below