You missed the bruteforce part:
hashcat64.exe -m 1400 -a 3 -i --increment-min=1 --increment-max=64 -o result.txt -1 ?d?l hashes.txt ?1*64 times
-1 ?d?l means digits + loweralpha
?1*64 times means repeat ?1 64 times (= increment max)
But 64 chars (a-z 0-9) is not achievable within a reasonable time.
hashcat64.exe -m 1400 -a 3 -i --increment-min=1 --increment-max=64 -o result.txt -1 ?d?l hashes.txt ?1*64 times
-1 ?d?l means digits + loweralpha
?1*64 times means repeat ?1 64 times (= increment max)
But 64 chars (a-z 0-9) is not achievable within a reasonable time.