So, just in case that wasn’t evil enough for you… perhaps you
have something you want to know the MD5 checksum of. So, you
could just do this:
drizzle> select md5('Hello World!');
+----------------------------------+
| md5('Hello World!') |
+----------------------------------+
| ed076287532e86365e841e92bfc50d8c |
+----------------------------------+
1 row in set (0 sec)
But that is soooo boring.
Since we have the SSL libs already loaded into Drizzle, and using my
very evil libtcc plugin… we could just implement it in
C. We can even use malloc!
drizzle> SELECT LIBTCC("#include …
[Read more]