UNPKG

@waku/rln

Version:

RLN (Rate Limiting Nullifier) implementation for Waku

17 lines (14 loc) 319 B
import { rfc4648 } from './base.js'; const base16 = rfc4648({ prefix: 'f', name: 'base16', alphabet: '0123456789abcdef', bitsPerChar: 4 }); const base16upper = rfc4648({ prefix: 'F', name: 'base16upper', alphabet: '0123456789ABCDEF', bitsPerChar: 4 }); export { base16, base16upper };