revert low rounds-count limits in crypt hashes
[musl] / src / crypt / crypt_blowfish.c
index bd37be8..d3f7985 100644 (file)
@@ -625,7 +625,7 @@ static char *BF_crypt(const char *key, const char *setting,
        }
 
        count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0'));
-       if (count < min || count > 2048 || BF_decode(data.binary.salt, &setting[7], 16)) {
+       if (count < min || BF_decode(data.binary.salt, &setting[7], 16)) {
                return NULL;
        }
        BF_swap(data.binary.salt, 4);