02-12-2022, 05:38 AM
You could search for integer overflow in the forum and you will find that keyspace is stored as an unsigned 64-bit integer.
If your keyspace is larger than 2^64-1 then you get the error. Looks like you're using 16 ?1. charset^16 < 2^64-1, thus your charset has to be less than 16 letters to not get an error. Still that will probably take centuries to complete.
If your keyspace is larger than 2^64-1 then you get the error. Looks like you're using 16 ?1. charset^16 < 2^64-1, thus your charset has to be less than 16 letters to not get an error. Still that will probably take centuries to complete.