Gathering detailed insights and metrics for aes-cmac-dibeling
Gathering detailed insights and metrics for aes-cmac-dibeling
Gathering detailed insights and metrics for aes-cmac-dibeling
Gathering detailed insights and metrics for aes-cmac-dibeling
npm install aes-cmac-dibeling
Typescript
Module System
Node Version
NPM Version
TypeScript (93.98%)
JavaScript (6.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
6 Stars
36 Commits
3 Forks
3 Watchers
1 Branches
5 Contributors
Updated on May 21, 2025
Latest Version
2.0.0
Package Id
aes-cmac-dibeling@2.0.0
Unpacked Size
33.06 kB
Size
5.08 kB
File Count
8
NPM Version
8.1.3
Node Version
16.4.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
AES CMAC implementation in typescript.
npm i aes-cmac
1(async () => { 2 const AesCmac = require('aes-cmac').AesCmac; 3 4 const key = Buffer.from('2b7e151628aed2a6abf7158809cf4f3c', 'hex'); 5 const msg = Buffer.from('6bc1bee22e409f96e93d7e117393172a', 'hex'); 6 7 const aesCmac = new AesCmac(key); 8 const result = Buffer.from(await aesCmac.calculate(msg)); 9 10 console.log(result.toString('hex')); 11})();
1import { AesCmac } from 'aes-cmac'; 2 3(async () => { 4 const key = Buffer.from('2b7e151628aed2a6abf7158809cf4f3c', 'hex'); 5 const msg = Buffer.from('6bc1bee22e409f96e93d7e117393172a', 'hex'); 6 7 const aesCmac = new AesCmac(key); 8 const result = Buffer.from(await aesCmac.calculate(msg)); 9 10 console.log(result.toString('hex')); 11})();
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 4/26 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
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