Implements RSA key pair generation, storage, rotation, and management per NIST SP 800-57, including PEM/DER/PKCS#8 serialization, password protection, and strength validation. Useful for secure asymmetric crypto.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills-zh:implementing-rsa-key-pair-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
RSA(Rivest-Shamir-Adleman)是应用最广泛的非对称(asymmetric)密码算法,用于数字签名、密钥交换和加密。本技能涵盖遵循 NIST SP 800-57 密钥管理指南生成、存储、轮换和管理 RSA 密钥对,包括密钥序列化格式(PEM、DER、PKCS#8)、密码保护和密钥强度验证。
RSA(Rivest-Shamir-Adleman)是应用最广泛的非对称(asymmetric)密码算法,用于数字签名、密钥交换和加密。本技能涵盖遵循 NIST SP 800-57 密钥管理指南生成、存储、轮换和管理 RSA 密钥对,包括密钥序列化格式(PEM、DER、PKCS#8)、密码保护和密钥强度验证。
| 密钥大小(位) | 安全强度(位) | 推荐使用至 |
|---|---|---|
| 2048 | 112 | 2030 年 |
| 3072 | 128 | 2030 年以后 |
| 4096 | ~140 | 2030 年以后 |
| 方案 | 使用场景 | 标准 |
|---|---|---|
| OAEP | 加密 | PKCS#1 v2.2(RFC 8017) |
| PSS | 签名 | PKCS#1 v2.2(RFC 8017) |
| PKCS#1 v1.5 | 仅遗留系统 | 新系统已弃用 |
npx claudepluginhub killvxk/cybersecurity-skills-zhGenerates, stores, rotates, and manages RSA key pairs following NIST SP 800-57 guidelines, including key serialization (PEM, DER, PKCS#8), passphrase protection, and key strength validation.
Generates, stores, rotates, and manages RSA key pairs following NIST SP 800-57 guidelines, including key serialization (PEM, DER, PKCS#8), passphrase protection, and key strength validation.
Generates, stores, rotates, and manages RSA key pairs per NIST SP 800-57 guidelines, with PEM/DER/PKCS#8 serialization, passphrase protection, key validation, and RSA-PSS signing/verification.