📦 cryptolint — 技能工具
v1.0.0Cryptography misuse & weak algorithm detector -- detects deprecated algorithms, hardcoded keys/IVs, ECB mode, weak random number generation, timing-vulnerabl...
0· 4·0 当前·0 累计
by @suhteevah
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install cryptolint
镜像加速npx clawhub@latest install cryptolint --registry https://cn.longxiaskill.com
技能文档
Cryptography misuse & weak algorithm detector.
Features
- Detects deprecated algorithms
- Detects hardcoded keys/IVs
- Detects ECB mode usage
- Detects weak random number generation
- Detects timing vulnerabilities
Usage
npm install -g cryptolint
cryptolint ./path/to/code
Configuration
Create .cryptolintrc in your project root:
{
"rules": {
"no-deprecated": true,
"no-hardcoded-keys": true
}
}