@nikeee/aes-cmac
Version:
A pure Node.js implementation of the AES-CMAC algorithm (NIST 800-38B / RFC 4493).
38 lines (37 loc) • 939 B
JSON
{
"name": "@nikeee/aes-cmac",
"version": "1.2.7",
"description": "A pure Node.js implementation of the AES-CMAC algorithm (NIST 800-38B / RFC 4493).",
"main": "src/index.js",
"types": "src/index.d.ts",
"type": "module",
"scripts": {
"test": "node --test",
"benchmark": "node ./src/benchmark/index.js",
"ci": "biome ci ./src",
"lint": "biome lint ./src",
"format": "biome format --write ./src && biome lint --write ./src && biome check --write ./src"
},
"keywords": [
"aes-cmac",
"aes",
"cmac"
],
"author": "Allan Stewart",
"maintainers": [
"Niklas Mollenhauer"
],
"repository": {
"type": "git",
"url": "https://github.com/nikeee/node-aes-cmac.git"
},
"bugs": {
"url": "https://github.com/nikeee/node-aes-cmac/issues"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^24.3.0",
"tinybench": "^4.1.0"
}
}