Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

b64-utils

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

b64-utils

Simple Base64 methods (encode, decode) using Built In buffers. This means its just an abstraction and will be as reliable as nodejs buffers are.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

b64

Simple Base64 methods using Built In buffers. This means its just an abstraction and will be as reliable as nodejs buffers are.

browser support

npm install b64-utils

This library is just a small quick stable library to clean up all the new Buffer( blah ).toString() blah.

Works well for me especially when doing alot of b64 work with crypto, on enterprise api's where security is insane.

Tests are the documentation. Enjoy



var test = require('tape');
var b64 = require('./index');

test('Encoding should work as expected', function (t) {
    t.plan(1);
    var expect = 'aGVsbG8gd29ybGQ=';

    //input value, input format
    var result = b64.encode('hello world', 'ascii');

    t.equals(result, expect);
});

test('Decoding should work as expected', function (t) {
    t.plan(1)
    var expect = 'hello world';

    // input value, output format
    var result = b64.decode('aGVsbG8gd29ybGQ=', 'ascii');

    t.equals(result, expect);
});

test('Encoding Buffers should still work as expected', function(t) {
    t.plan(1);

    var expect = 'aGVsbG8gd29ybGQ=';

    // please note that the second argument is ignored here, since the buffer is already raw byte data;
    var result = b64.encode(new Buffer('hello world'));

    t.equals(result, expect);;
});

test('Decoding Buffers should still work as expected', function(t) {
    t.plan(1);

    var expect = 'hello world';

    var result = b64.decode(new Buffer('aGVsbG8gd29ybGQ='), 'ascii');

    t.equals(result, expect);
})

Keywords

FAQs

Package last updated on 19 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc