Skip to content

A base32 postgres extension. Supports RFC4648 and Crockford.

Notifications You must be signed in to change notification settings

vabatta/pg_base32

Repository files navigation

Welcome to pg_base32 👋

Version License: MIT

A base32 postgres extension. Supports RFC4648 and Crockford.

Install

First, install pgx.

cargo pgx install pg14 --release

Add the extension to your database.

CREATE EXTENSION pg_base32;

Usage

Schema name: base32

$ SELECT base32.encode('hello');
  encode  
----------
 NBSWY3DP
(1 row)
$ SELECT base32.decode('NBSWY3DP');
    decode    
--------------
 \x68656c6c6f
(1 row)
$ SELECT convert_from(base32.decode('NBSWY3DP'), 'UTF8');
 convert_from 
--------------
 hello
(1 row)

base32.encode

encode(data: text, variant: 'rfc4648' | 'crockford' = 'rfc4648', padding: bool = false) -> text

  • data: text: Input data
  • variant: 'rfc4648' | 'crockford': The variant to use
  • padding: bool: If padding should be used (only for rfc4648)

base32.decode

decode(data: text, variant: 'rfc4648' | 'crockford' = 'rfc4648', padding: bool = false) -> bytea

  • data: text: Encoded data
  • variant: 'rfc4648' | 'crockford': The variant to use
  • padding: bool: If padding should be used (only for rfc4648)

Author

👤 vabatta

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator

About

A base32 postgres extension. Supports RFC4648 and Crockford.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published