github nalgeon/sqlean 0.19.4

latest releases: 0.27.1, 0.27.0, 0.26.0...
16 months ago

Encode/decode functions in the crypto extension (similar to the ones in postgres).

Base32:

select encode('hello', 'base32');
-- NBSWY3DP
select decode('NBSWY3DP', 'base32');
-- hello

Base64:

select encode('hello', 'base64');
-- aGVsbG8=
select decode('aGVsbG8=', 'base64');
-- hello

Don't miss a new sqlean release

NewReleases is sending notifications on new releases.