From cybersec-toolkit
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersec-toolkit: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) is the most widely deployed asymmetric cryptographic algorithm, used for digital signatures, key exchange, and encryption. This skill covers generating, storing, rotating, and managing RSA key pairs following NIST SP 800-57 key management guidelines, including key serialization formats (PEM, DER, PKCS#8), passphrase protection, and key strength validation.
RSA (Rivest-Shamir-Adleman) is the most widely deployed asymmetric cryptographic algorithm, used for digital signatures, key exchange, and encryption. This skill covers generating, storing, rotating, and managing RSA key pairs following NIST SP 800-57 key management guidelines, including key serialization formats (PEM, DER, PKCS#8), passphrase protection, and key strength validation.
| Key Size (bits) | Security Strength (bits) | Recommended Until |
|---|---|---|
| 2048 | 112 | 2030 |
| 3072 | 128 | Beyond 2030 |
| 4096 | ~140 | Beyond 2030 |
| Scheme | Use Case | Standard |
|---|---|---|
| OAEP | Encryption | PKCS#1 v2.2 (RFC 8017) |
| PSS | Signatures | PKCS#1 v2.2 (RFC 8017) |
| PKCS#1 v1.5 | Legacy only | Deprecated for new systems |
npx claudepluginhub 26zl/cybersec-toolkit --plugin cybersec-toolkitGenerates, 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.
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.