revert low rounds-count limits in crypt hashes
[musl] / src / crypt / crypt_des.c
index d7b2b15..4454a13 100644 (file)
@@ -911,7 +911,7 @@ static char *_crypt_extended_r_uut(const char *_key, const char *_setting, char
                                return NULL;
                        count |= value << (i - 1) * 6;
                }
-               if (!count || count > 262143)
+               if (!count)
                        return NULL;
 
                for (i = 5, salt = 0; i < 9; i++) {