Socket
Socket
Sign inDemoInstall

binascii

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    binascii

Port of binascii library from Python


Version published
Maintainers
1
Install size
7.24 kB
Created

Readme

Source

binascii by @michalbe

Port of binascii library from Python

What

The binascii module contains a number of methods to convert between binary and various ASCII-encoded binary representations.

More: python binascii docs For now only two methods are implemented - hexlify with b2a_hex alias and 'unhexlify' (called also a2b_hex).

How to use:

npm install binascii

then:

var ba = require('binascii');

console.log(ba.hexlify('A')); // result: '41'
console.log(ba.unhexlify('377abcaf271c')); // result: '7z¼¯'\u001c'

API

  • hexlify - Return the hexadecimal representation of the binary data. Every byte of data is converted into the corresponding 2-digit hex representation.
  • unhexlify - Return the binary data represented by the hexadecimal string. This function is the inverse of hexlify.
  • b2a_hex - alias of hexlify
  • a2b_hex - alias of unhexlify

To Do

original library supports also:

  • a2b_uu
  • b2a_uu
  • a2b_base64
  • b2a_base64
  • a2b_qp
  • b2a_qp
  • a2b_hqx
  • rledecode_hqx
  • rlecode_hqx
  • b2a_hqx
  • crc_hqx
  • crc32

Interested in implementing any of those? Check binascii docs for more info on how those methods should work

FAQs

Last updated on 04 Dec 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc