06-24-2020, 03:51 AM
Okay, so I completely follow Mr. Fancypants! (in matlab)
>> genpass589c(double(501073112)*465661287.5245797)
ans =
'3m5p9s846p3m'
but then your key:
genpass589c(uint64(234369665153722384)
ans =
'3m5p5s349p3m'
so a few decimals in the middle are different, are you using a (mod 37) or a (mod 8) for the odd characters in the pw? That (mod 8) ripples through the whole password (well all the numbers, the letters stay the same), but I managed to reproduce it. Mod 37 isolates each character in the password. I need to test it to see if that makes your key match that.
It indeed that falls apart with the other keys. Man what time wasted on a dead-end LOL. I need more thinking time....
>> genpass589c(double(501073112)*465661287.5245797)
ans =
'3m5p9s846p3m'
but then your key:
genpass589c(uint64(234369665153722384)
ans =
'3m5p5s349p3m'
so a few decimals in the middle are different, are you using a (mod 37) or a (mod 8) for the odd characters in the pw? That (mod 8) ripples through the whole password (well all the numbers, the letters stay the same), but I managed to reproduce it. Mod 37 isolates each character in the password. I need to test it to see if that makes your key match that.
It indeed that falls apart with the other keys. Man what time wasted on a dead-end LOL. I need more thinking time....