Skip to content

0.19.4

Compare
Choose a tag to compare
@github-actions github-actions released this 28 May 19:55
· 136 commits to main since this release

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