Y
Hacker News
new
|
ask
|
show
|
jobs
by
hiAndrewQuinn
322 days ago
>The bcrypt implementation only uses the first 72 bytes of a string. Any characters after that are ignored.
Is there any good reason for this one in particular?
1 comments
mras0
321 days ago
bcrypt is based on the blowfish cipher which "only" support keys up to 576 bits (72 bytes) in length (actually only 448 bits as spec'ed). Wikipedia has all the details.
link