Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ecies-25519

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ecies-25519

Isomorphic Cryptography Library for X25519 ECIES

  • 1.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
329
decreased by-7.58%
Maintainers
1
Weekly downloads
 
Created
Source

ecies-25519 npm version

Isomorphic Cryptography Library for X25519 ECIES

Description

This library supports ECIES encryption using Curve25519 Diffie–Hellman key exchange (aka X25519).

AES, HMAC and SHA methods are supported through native NodeJS and Browser APIs when available and fallbacks to vanilla javascript are already provided.

Usage

ECIES

import * as ecies25519 from 'ecies-25519';
import * as encUtils from 'enc-utils';

const keyPair = ecies25519.generateKeyPair();

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

const encrypted = await ecies25519.encrypt(msg, keyPairB.publicKey);

const decrypted = await ecies25519.decrypt(encrypted, keyPairB.privateKey);

// decrypted === msg

ECDH

import * as ecies25519 from 'ecies-25519';

const keyPairA = ecies25519.generateKeyPair();
const keyPairB = ecies25519.generateKeyPair();

const sharedKey1 = await ecies25519.derive(
  keyPairA.privateKey,
  keyPairB.publicKey
);

const sharedKey2 = await ecies25519.derive(
  keyPairB.privateKey,
  keyPairA.publicKey
);

// sharedKey1 === sharedKey2

RandomBytes

import * as ecies25519 from 'ecies-25519';

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

// key.length === length

AES

import * as ecies25519 from 'ecies-25519';
import * as encUtils from 'enc-utils';

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

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

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

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

// decrypted === str

HMAC

import * as ecies25519 from 'ecies-25519';
import * as encUtils from 'enc-utils';

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

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

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

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

// result will return true if match

SHA2

import * as ecies25519 from 'ecies-25519';
import * as encUtils from 'enc-utils';

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

// SHA512
const str = 'test message to hash';
const msg = encUtils.utf8ToArray(str);
const hash = await ecies25519.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

Package 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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc