Gathering detailed insights and metrics for @aws-crypto/crc32c
Gathering detailed insights and metrics for @aws-crypto/crc32c
Gathering detailed insights and metrics for @aws-crypto/crc32c
Gathering detailed insights and metrics for @aws-crypto/crc32c
AWS Cryptographic helpers for Javascript and Node.js
npm install @aws-crypto/crc32c
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
64 Stars
263 Commits
34 Forks
18 Watching
17 Branches
36 Contributors
Updated on 21 Nov 2024
TypeScript (92.68%)
JavaScript (7.32%)
Cumulative downloads
Total Downloads
Last day
-10.3%
1,153,374
Compared to previous day
Last week
2.3%
6,771,153
Compared to previous week
Last month
5.7%
28,426,919
Compared to previous month
Last year
93.7%
268,241,457
Compared to previous year
3
AWS Cryptographic Helpers for Javascript and Node.js
This repository collects cryptographic helper packages. We have designed it to gather packages that implement simple primitives for the browser or Node.js. More information about AWS Crypto Tools can be found here
This project is still in its early stages. Please send us your feedback. We might make breaking changes in future releases while the SDK is still in developer preview.
Let’s walk through setting up a project that requires a cryptographically secure random value. The following steps use npm as an example. They assume you have node.js and npm already installed.
npm install --save @aws-crypto/random-source-node@preview
1const { randomValues } = require("@aws-crypto/random-source-node"); 2async function example() { 3 try { 4 const rand = await randomValues(32); 5 console.log(rand.length); 6 } catch (err) { 7 console.error(err); 8 } 9} 10example();
Each package has readme details.
To run the tests in every package.
npm install
npm test
We welcome your feedback! If you have comments, questions, or suggestions, open a GitHub issue. We are actively monitoring issues and will respond to feedback as we prepare for our GA launch.
We welcome your contributions! To fix a problem, or add to an existing package: create a pull request. You must submit all pull requests under the Apache 2.0 license. They will be reviewed by a team member prior to merging. We would appreciate, but do not require, unit tests for all significant contributions. See Contributing for more information.
This library is licensed under the Apache 2.0 License.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 21/25 approved changesets -- score normalized to 8
Reason
8 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More