
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@cryptography/sha256
Advanced tools
High-performance synchronous SHA-256 implementation for JavaScript
High-performance synchronous SHA-256 implementation for JavaScript. Optimized for browsers.
Package is available through npm
and yarn
npm install @cryptography/sha256
yarn add @cryptography/sha256
This package is optimized for small byte inputs (<10kb).
Also, it is highly recommended to run CPU-intensive tasks in a Web Worker.
import sha256 from '@cryptography/sha256'
// as Uint32Array([0xa8d627d9, 0x3f518e90, 0x96b6f40e, 0x36d27b76, 0x60fa26d3, 0x18ef1adc, 0x43da750e, 0x49ebe4be])
const array = sha256('Hello World!')
// as hex-string: "a8d627d93f518e9096b6f40e36d27b7660fa26d318ef1adc43da750e49ebe4be"
const hex = sha256('Hello World!', 'hex')
// as binary string: "ÄïükYoUH½LÛ,Zß\nNÆêE©¡`M¢"
const raw = sha256('Hello World!', 'binary')
// UInt32Array as input
const buf = new Uint32Array([0xa8d627d9, 0x3f518e90, 0x96b6f40e, 0x36d27b76, 0x60fa26d3, 0x18ef1adc, 0x43da750e, 0x49ebe4be]);
sha256(buf)
For hashing large files or other data chuncks use stream()
to create a hashing stream.
sha256.stream().update('Hello World!').digest();
Faster than forge, sjcl and WebCrypto API in sequence mode.
Contributions are welcome! Contribution guidelines will be published soon.
FAQs
High-performance synchronous SHA-256 implementation for JavaScript
The npm package @cryptography/sha256 receives a total of 375 weekly downloads. As such, @cryptography/sha256 popularity was classified as not popular.
We found that @cryptography/sha256 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.