You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

buffer-xor

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buffer-xor

A simple module for bitwise-xor on buffers


Version published
Weekly downloads
7.1M
decreased by-20.16%
Maintainers
1
Install size
36.4 kB
Created
Weekly downloads
 

Package description

What is buffer-xor?

The buffer-xor npm package is a utility that allows for the bitwise XOR operation to be performed on two buffers. This operation is useful in various cryptographic functions and data manipulation tasks where you need to combine data in a way that preserves or manipulates information in a reversible manner.

What are buffer-xor's main functionalities?

Bitwise XOR operation on buffers

This feature allows you to perform a bitwise XOR operation on two buffers. The code sample demonstrates how to use the buffer-xor package to XOR two hexadecimal buffers and print the result. This is particularly useful in cryptographic operations where XOR is a common operation.

"use strict";\nconst xor = require('buffer-xor');\nlet a = Buffer.from('f00d', 'hex');\nlet b = Buffer.from('dead', 'hex');\nlet output = xor(a, b);\nconsole.log(output.toString('hex')); // Output will be '2f73'

Other packages similar to buffer-xor

Readme

Source

buffer-xor

NPM Package Build Status

js-standard-style

A simple module for bitwise-xor on buffers.

Examples

var xor = require('buffer-xor')
var a = new Buffer('00ff0f', 'hex')
var b = new Buffer('f0f0', 'hex')

console.log(xor(a, b))
// => <Buffer f0 0f 0f>

Or for those seeking those few extra cycles, perform the operation in place with xorInplace:

NOTE: xorInplace won't xor past the bounds of the buffer it mutates so make sure it is long enough!

var xorInplace = require('buffer-xor/inplace')
var a = new Buffer('00ff0f', 'hex')
var b = new Buffer('f0f0', 'hex')

console.log(xorInplace(a, b))
// => <Buffer f0 0f 0f>

// See that a has been mutated
console.log(a)
// => <Buffer f0 0f 0f>

License MIT

Keywords

FAQs

Package last updated on 21 Aug 2017

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc