Socket
Socket
Sign inDemoInstall

@aws-sdk/util-hex-encoding

Package Overview
Dependencies
1
Maintainers
5
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/util-hex-encoding


Version published
Weekly downloads
4.2M
increased by1.59%
Maintainers
5
Created
Weekly downloads
 

Package description

What is @aws-sdk/util-hex-encoding?

@aws-sdk/util-hex-encoding is a utility package from AWS SDK for JavaScript that provides functions to encode and decode hexadecimal strings. This can be particularly useful for handling binary data in a readable format.

What are @aws-sdk/util-hex-encoding's main functionalities?

Hex Encoding

This feature allows you to convert a Buffer or Uint8Array to a hexadecimal string. The code sample demonstrates encoding the string 'Hello, World!' into its hexadecimal representation.

const { toHex } = require('@aws-sdk/util-hex-encoding');
const buffer = Buffer.from('Hello, World!');
const hexString = toHex(buffer);
console.log(hexString); // Outputs: 48656c6c6f2c20576f726c6421

Hex Decoding

This feature allows you to convert a hexadecimal string back into a Buffer. The code sample demonstrates decoding the hexadecimal string back into the original 'Hello, World!' string.

const { fromHex } = require('@aws-sdk/util-hex-encoding');
const hexString = '48656c6c6f2c20576f726c6421';
const buffer = fromHex(hexString);
console.log(buffer.toString()); // Outputs: Hello, World!

Other packages similar to @aws-sdk/util-hex-encoding

Changelog

Source

1.0.0-rc.2 (2020-10-22)

Bug Fixes

  • storage: add version and downloads badges (#1599) (230d030)
  • throw 3XX redirection as errors explicitly (#1591) (76f83f1)

Readme

Source

@aws-sdk/util-hex-encoding

NPM version NPM downloads

FAQs

Last updated on 22 Oct 2020

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc