cryptography

Installation
SKILL.md

Cryptography

Password Hashing

bcrypt (recommended for most apps)

import bcrypt from 'bcrypt';

const SALT_ROUNDS = 12;

async function hashPassword(password: string): Promise<string> {
  return bcrypt.hash(password, SALT_ROUNDS);
}

async function verifyPassword(password: string, hash: string): Promise<boolean> {
  return bcrypt.compare(password, hash);
}
Installs
33
GitHub Stars
37
First Seen
Mar 6, 2026
cryptography — claude-dev-suite/claude-dev-suite