You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users always want to know how long it would take to perform the recovery or sometimes to just know the possibility of recovering something considering how much of it is lost. Examples: #20#17#7
It would be useful to add a feature that would take some minimal inputs (such as mnemonic total word count and number of missing words), ran the main loop of the respective Service and reported a key/second speed with the total amount of time it would take to go through all of it.
The text was updated successfully, but these errors were encountered:
This is partially solved in 221ac33 and 07e6a5f
This new feature prints an estimated speed (number of permutations checked per second) and the time remaining to process all cases every couple of seconds (3 to be exact).
Although this method is accurate, the first value requires at least one round (in the outer loop) to finish which would update the Progress property used in its calculations. In cases where the total keys to check is huge, this can take a considerable amount of time before the estimated values starts showing up.
This means we still need a benchmark feature to know how many permutations can the user's computer process per second to give an initial time and speed prediction, then update it later using the exact values using the Progress property.
Users always want to know how long it would take to perform the recovery or sometimes to just know the possibility of recovering something considering how much of it is lost. Examples: #20 #17 #7
It would be useful to add a feature that would take some minimal inputs (such as mnemonic total word count and number of missing words), ran the main loop of the respective
Service
and reported a key/second speed with the total amount of time it would take to go through all of it.The text was updated successfully, but these errors were encountered: