Giter Site home page Giter Site logo

binascii's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.