Socket
Socket
Sign inDemoInstall

@pedrouid/iso-crypto

Package Overview
Dependencies
4
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pedrouid/iso-crypto


Version published
Maintainers
1
Install size
1.56 MB
Created

Readme

Source

iso-crypto npm version

Isomorphic Cryptography Library for AES, HMAC and SHA2

Description

This library supports AES, HMAC and SHA2 methods through native NodeJS and Browser APIs when available and fallbacks to vanilla javascript are already provided.

Usage

RandomBytes

import * as isoCrypto from 'iso-crypto';

const length = 32;
const key = isoCrypto.randomBytes(length);

// key.length === length

AES

import * as isoCrypto from 'iso-crypto';
import * as encUtils from 'enc-utils';

const key = isoCrypto.randomBytes(32);
const iv = isoCrypto.randomBytes(16);

const str = 'test message to encrypt';
const msg = encUtils.utf8ToArray(str);

const ciphertext = await isoCrypto.aesCbcEncrypt(iv, key, msg);

const decrypted = await isoCrypto.aesCbcDecrypt(iv, key, ciphertext);

// decrypted === str

HMAC

import * as isoCrypto from 'iso-crypto';
import * as encUtils from 'enc-utils';

const key = isoCrypto.randomBytes(32);
const iv = isoCrypto.randomBytes(16);

const macKey = encUtils.concatArrays(iv, key);
const dataToMac = encUtils.concatArrays(iv, key, msg);

const mac = await isoCrypto.hmacSha256Sign(macKey, dataToMac);

const result = await isoCrypto.hmacSha256Verify(macKey, dataToMac, mac);

// result will return true if match

SHA2

import * as isoCrypto from 'iso-crypto';
import * as encUtils from 'enc-utils';

// SHA256
const str = 'test message to hash';
const msg = encUtils.utf8ToArray(str);
const hash = await isoCrypto.sha256(str);

// SHA512
const str = 'test message to hash';
const msg = encUtils.utf8ToArray(str);
const hash = await isoCrypto.sha512(str);

React-Native Support

This library is intended for use in a Browser or NodeJS environment, however it is possible to use in a React-Native environment if NodeJS modules are polyfilled with react-native-crypto, read more here.

License

MIT License

Keywords

FAQs

Last updated on 02 Mar 2021

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