← Back to list

openssl
by clawdbot
All versions of all skills that are on clawdhub.com archived
⭐ 7🍴 6📅 Jan 24, 2026
SKILL.md
name: openssl description: Generate secure random strings, passwords, and cryptographic tokens using OpenSSL. Use when creating passwords, API keys, secrets, or any secure random data.
OpenSSL Secure Generation
Generate cryptographically secure random data using openssl rand.
Password/Secret Generation
# 32 random bytes as base64 (43 chars, URL-safe with tr)
openssl rand -base64 32 | tr '+/' '-_' | tr -d '='
# 24 random bytes as hex (48 chars)
openssl rand -hex 24
# alphanumeric password (32 chars)
openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c 32
Common Lengths
| Use Case | Command |
|---|---|
| Password (strong) | openssl rand -base64 24 |
| API key | openssl rand -hex 32 |
| Session token | openssl rand -base64 48 |
| Short PIN (8 digits) | `openssl rand -hex 4 |
Notes
-base64outputs ~1.33x the byte count in characters-hexoutputs 2x the byte count in characters- Pipe through
tr -dcto filter character sets - Always use at least 16 bytes (128 bits) for secrets
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

