mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
cb5427ee47
timing, I know :)) At the moment the digest() function returns hexadecimal coded hash, but I want it to return pure binary. I have also included functions encode() and decode() which support 'base64' and 'hex' encodings, so if anyone needs digest() in hex he can do encode(digest(...), 'hex'). Main reason for it is "to do one thing and do it well" :) Another reason is if someone needs really lot of digesting, in the end he wants to store the binary not the hexadecimal result. It is really silly to convert it to hex then back to binary again. As I said if someone needs hex he can get it. Well, and the real reason that I am doing encrypt()/decrypt() functions and _they_ return binary. For testing I like to see it in hex occasionally, but it is really wrong to let them return hex. Only now it caught my eye that hex-coding in digest() is wrong. When doing digest() I thought about 'common case' but hacking with psql is probably _not_ the common case :) Marko Kreen
24 lines
560 B
MySQL
24 lines
560 B
MySQL
|
|
-- drop function digest(text, text);
|
|
-- drop function digest_exists(text);
|
|
-- drop function encode(text, text);
|
|
-- drop function decode(text, text);
|
|
|
|
|
|
CREATE FUNCTION digest(text, text) RETURNS text
|
|
AS '@MODULE_FILENAME@',
|
|
'digest' LANGUAGE 'C';
|
|
|
|
CREATE FUNCTION digest_exists(text) RETURNS bool
|
|
AS '@MODULE_FILENAME@',
|
|
'digest_exists' LANGUAGE 'C';
|
|
|
|
CREATE FUNCTION encode(text, text) RETURNS text
|
|
AS '@MODULE_FILENAME@',
|
|
'encode' LANGUAGE 'C';
|
|
|
|
CREATE FUNCTION decode(text, text) RETURNS text
|
|
AS '@MODULE_FILENAME@',
|
|
'decode' LANGUAGE 'C';
|
|
|