5.2.0 • Published 7 months ago

@aws-crypto/sha256-universal v5.2.0

Weekly downloads
56
License
Apache-2.0
Repository
github
Last release
7 months ago

@aws-crypto/sha256-universal

A consistent interface for SHA256 across browsers and NodeJs

Usage

  • To hash "some data"
import {Sha256} from '@aws-crypto/sha256-universal'

const hash = new Sha256();
hash.update('some data');
const result = await hash.digest();
  • To hmac "some data" with "a key"
import {Sha256} from '@aws-crypto/sha256-universal'

const hash = new Sha256('a key');
hash.update('some data');
const result = await hash.digest();

Test

npm test