On 25 Listopad 2011, 15:15, mephysto wrote:
> Hello to everyone,
> I would need to hash some text and I would to produce an hexadecimal value
> as result.
>
> Is there a postgres function to achieve this goal?
What about md5(text)? If you need better hashing (e.g. sha-1), check
pgcrypto contrib module.
T.