
Security News
VulnCon 2025: NVD Scraps Industry Consortium Plan, Raising Questions About Reform
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
@types/sha.js
Advanced tools
TypeScript definitions for sha.js
npm install --save @types/sha.js
This package contains type definitions for sha.js (https://github.com/crypto-browserify/sha.js).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sha.js.
/// <reference types="node" />
import { Hash } from "crypto";
export = SHA;
declare function SHA(algorithm: SHA.Algorithm | Uppercase<SHA.Algorithm>): Hash;
declare namespace SHA {
type Algorithm = "sha" | "sha1" | "sha224" | "sha256" | "sha384" | "sha512";
interface HashStatic {
new(): Hash;
}
const sha: HashStatic;
const sha1: HashStatic;
const sha224: HashStatic;
const sha256: HashStatic;
const sha384: HashStatic;
const sha512: HashStatic;
}
These definitions were written by BendingBender.
FAQs
TypeScript definitions for sha.js
The npm package @types/sha.js receives a total of 86,152 weekly downloads. As such, @types/sha.js popularity was classified as popular.
We found that @types/sha.js 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.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.