Socket
Socket
Sign inDemoInstall

@cryptography/sha1

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cryptography/sha1

High-performance synchronous SHA-1 implementation for JavaScript


Version published
Weekly downloads
708
decreased by-13.66%
Maintainers
1
Install size
54.2 kB
Created
Weekly downloads
 

Readme

Source

@cryptography/sha256

Bundlephobia Coverage Travis CI

High-performance synchronous SHA-1 implementation for JavaScript. Optimized for browsers.

Features

  • Blazing fast
  • Ultra lightweight
  • ECMAScript 3-6
  • Typed
  • Tested`

Setup

Package is available through npm and yarn

npm install @cryptography/sha1
yarn add @cryptography/sha1

When you should use @cryptography/sha1

  • Hashing small inputs (< 5kb)
  • Key derivation functions
  • 100% browser support required

⚠️ When you should not use this (WebCrypto API preferred cases)

  • Hashing files (> 5kb)
  • Concurrent hashing large amount of messages

Usage

This package is optimized for small byte inputs (<10kb).

Also, it is highly recommended to run CPU-intensive tasks in a Web Worker.

import sha1 from '@cryptography/sha1'

// as Uint32Array([0xa8d627d9, 0x3f518e90, 0x96b6f40e, 0x36d27b76, 0x60fa26d3])
const array = sha1('Hello World!') 

// as hex-string: "a8d627d93f518e9096b6f4...."
const hex = sha1('Hello World!', 'hex')

// as binary string: "ÄïükYo‡UH½LÛ,Zß..."
const raw = sha1('Hello World!', 'binary')

// UInt32Array as input
const buf = new Uint32Array([0xa8d627d9, 0x3f518e90, 0x96b6f40e, 0x36d27b76, 0x60fa26d3, 0x18ef1adc, 0x43da750e, 0x49ebe4be]);
sha1(buf)

For hashing large files or other data chuncks use stream() to create a hashing stream.

sha1.stream().update('Hello World!').digest();

Benchmarks

Faster than forge, sjcl, Rusha and WebCrypto API in sequence mode.

Try yourself

Contributing

Contributions are welcome! Contribution guidelines will be published soon.

Keywords

FAQs

Last updated on 09 Apr 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc