Scrypt Hash Generator
Generate scrypt password hashes with configurable cost parameters. Uses a pure-JS Salsa20/8 core with PBKDF2-SHA256 (WebCrypto) for key derivation.
Password
Salt
log2(N)
N = 16,384
r (block size)
p (parallelism)
Output bytes
Derived key (hex)
—
About scrypt
Scrypt is a memory-hard key derivation function. N controls memory/CPU cost (must be a power of 2), r controls block size, and p controls parallelism. Recommended minimum: N=2^14 (16384), r=8, p=1. Higher N values may freeze the browser tab.
Related tools
Hash GeneratorCrypto
Generate MD5/SHA256/SHA512 hashes in-browser.
HMAC GeneratorCrypto
Generate HMAC (SHA-256/512) using WebCrypto.
PBKDF2 GeneratorCrypto
Derive keys with PBKDF2 (WebCrypto).
Bcrypt Hash GeneratorCrypto
Hash and verify passwords with bcrypt locally in your browser.
File Hash (SHA-256)Crypto
Hash a file locally in your browser.
Checksum VerifierCrypto
Verify file checksums (MD5/SHA-1/SHA-256/SHA-512) by computing and comparing hashes in your browser.