用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill openssl命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | openssl |
| description | Auth/lab ref: OpenSSL CLI for encryption, decryption, digesting, certificate inspection, and key handling. |
| compatibility | Linux, macOS, Windows; OpenSSL CLI installed. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Swiss Army knife for practical crypto plumbing. Also a terrific way to learn that syntax is a form of weather.
Use OpenSSL when you need to:
# SHA-256 digest
openssl dgst -sha256 file.bin
# Inspect a certificate
openssl x509 -in cert.pem -text -noout
# Check an RSA private key
openssl rsa -in key.pem -check
openssl enc -aes-256-cbc -d -in cipher.bin -out plain.txt -pbkdf2 -pass pass:secret
openssl enc -aes-128-cbc -in plain.txt -out cipher.bin -pbkdf2 -pass pass:secret
openssl x509 -in cert.pem -text -noout
openssl pkey -in key.pem -text -noout
openssl rsa -pubin -in pub.pem -text -noout
openssl x509 -in cert.pem -outform der -out cert.der
openssl x509 -inform der -in cert.der -out cert.pem
-pbkdf2 instead of trusting old defaults.dgst, enc, x509, pkey, and rsa cover most day-to-day shell work.cyberchef, sagemath, or application-specific tooling when the task moves beyond basic transforms.No bundled scripts/, references/, or assets/.
Use openssl help and the version-matched man pages for command-specific flags.