▲ | hiAndrewQuinn 6 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? | ||
▲ | mras0 6 days ago | parent [-] | |
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. |