I'm going to use Blowfish cipher for my project in PHP (mcrypt_blowfish). But I have a question regarding the used of mcrypt_blowfish, how long is the deafult key size that was used by this mode of encryption in PHP?? Some other cipher that was support by libmcrypt had a declared key size, like :
MCRYPT_RIJNDAEL_128 --> 128 bit key
MCRYPT_RIJNDAEL_192 --> 192 bit key
MCRYPT_RC6_128 --> 128 bit key
MCRYPT_RC6_192 --> 192 bit key
But how long is the deafult key size for mcrypt_blowfish?? Thx before...