Skip to main content
DevTools24

Gerador Bcrypt

Gere hashes de senha bcrypt seguros com fator de custo configurável para sistemas de autenticação.

Generate Hash

10
Higher = more secure but slower. 10-12 recommended.

Verify Password

About Bcrypt:
  • • Bcrypt is a password hashing algorithm designed to be slow
  • • The cost factor determines the number of iterations (2^cost)
  • • Each hash includes a random salt, so the same password produces different hashes
  • Note: This is a demo implementation. Use bcryptjs in production.

Hash Bcrypt - Detalhes Técnicos

Bcrypt é projetado para ser lento, tornando ataques de força bruta impraticáveis. O fator de custo (10-12 recomendado) determina quantas iterações são realizadas. Cada hash inclui um salt aleatório.

Alternativa via Linha de Comando

// Bcrypt hash format\n$2b$10$salt22chars.hash31characters\n\n$2b = algorithm\n$10 = cost (2^10 iterations)\nsalt = 22 char random salt