How to implement XXTEA in MySQL?
Posted
by user339229
on Stack Overflow
See other posts from Stack Overflow
or by user339229
Published on 2010-05-12T11:20:46Z
Indexed on
2010/05/12
11:24 UTC
Read the original article
Hit count: 154
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
© Stack Overflow or respective owner