I'm making a password brute forcing tool as a learning exercise, and I want it to be resumable.
So, what I want is to be able to say, this is the set of possible characters, if I computed the Cartesian set of every possible combination of this set up to length n, what is the set at point x?
However, I want to do this without computing the entire set. I've seen similar logic in one place online but I was unable to generalise this to fit.
Any help would be fantastic, thanks! I'm fluent in C# if that helps.
Edit: Here's the question I mentioned earlier: How to select specific item from cartesian product without calculating every other item
Edit: here's an example of what I mean:
Char set = [abcd]
Length n = 4
Permutations:
[aaaa]
[aaab]
[aaac]
[aaad]
[aaba]
....
[dddd]
So if I'm searching for the set at 4, I'd get [aaad]. But if I'm searching for element 7000, then it takes a long time to get to that point.