3c03b04157
- Bundle aes-js as aes-bundle.js (standalone aesjs global), precache in SW (v7) - Add AES-CBC (zero IV, 16/24/32B) + AES-CMAC (SP 800-38B, 8-octet) helpers - genSp(): algorithm dispatch, AES counter hard-block (b5b4 = 10/11 per Rel-18) - Cross-checked AES vectors against pySim OtaDialectSms.encode_cmd - Docs: AES + 3DES deprecation, fix stale SPI1 value table
29 lines
853 B
JSON
29 lines
853 B
JSON
{
|
|
"name": "otaman",
|
|
"version": "1.0.0",
|
|
"description": "Standalone offline HTML/JS tool for building APDU commands for SIM, USIM, and GlobalPlatform RAM, plus encoding conversions.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "npx tailwindcss -i src/style.css -o style.css --config tailwind.config.js",
|
|
"build:prod": "NODE_ENV=production npx tailwindcss -i src/style.css -o style.css --config tailwind.config.js --minify",
|
|
"test": "node --test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.atroshin.ru/catarrh/otaman.git"
|
|
},
|
|
"keywords": [],
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.5.4",
|
|
"cssnano": "^8.0.2",
|
|
"postcss": "^8.5.25",
|
|
"postcss-cli": "^11.0.1",
|
|
"tailwindcss": "^3.4.19"
|
|
},
|
|
"dependencies": {
|
|
"aes-js": "^3.1.2",
|
|
"des.js": "^1.1.0"
|
|
}
|
|
}
|