Bcrypt 생성기
인증 시스템을 위한 구성 가능한 비용 계수로 안전한 bcrypt 비밀번호 해시를 생성합니다.
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.
Bcrypt 해싱 - 기술 세부 정보
Bcrypt는 무차별 대입 공격을 비실용적으로 만들기 위해 느리게 설계되었습니다. 비용 계수(10-12 권장)는 수행되는 반복 횟수를 결정합니다. 각 해시는 무작위 솔트를 포함합니다.
명령줄 대안
// Bcrypt hash format\n$2b$10$salt22chars.hash31characters\n\n$2b = algorithm\n$10 = cost (2^10 iterations)\nsalt = 22 char random salt