is-canonical-base64

1.1.1 • Public • Published

is-canonical-base64

a regular expression to test wether a string is a valid base64, without ambiguity.

Base64 encodes bytes (base 256, 8 bits each) as chars each representing 6 bits. That means a one byte buffer necessarily becomes 2 chars, except only the top 2 bits of the last char are used (and the string is then padded with an == to take the spaces those chars would be)

It's recommended that implementations encode zeros here, but many implementations (including node.js's) accept non-zeros here, but just ignore them.

This can be a problem for signed data, because if the signature signs base64, you must retain exactly the encoded representation (including any ambiguity). So, it's good to enforce that ambigious representations are rejected.

usage

simple

var isCanonicalBase64 = require('canonical-base64')() //note, returns a function
isCanonicalBase64.test(string)

advanced: you may pass in a prefix and suffix, which is combined into the regular expression.

var isCanonicalBase64 = require('canonical-base64')('@', '(?:\.ed25519)')
isCanonicalBase64.test(string)

License

MIT

/is-canonical-base64/

    Package Sidebar

    Install

    npm i is-canonical-base64

    Weekly Downloads

    170

    Version

    1.1.1

    License

    MIT

    Unpacked Size

    5.25 kB

    Total Files

    6

    Last publish

    Collaborators

    • dominictarr