Closed upsampled closed 5 years ago
Upon following the install instructions I got the following error:
FindCrypt.java:696: error: cannot find symbol private static final String __DEFAULT_LOAD_DIR = "findcrypt_ghidra" + File.separator + "database.d3v"; ^ symbol: variable File location: class FindCrypt FindCrypt.java:761: error: cannot find symbol DataInputStream _stream = new DataInputStream(new FileInputStream(cwd + File.separator + __DEFAULT_LOAD_DIR)); ^ symbol: variable File location: class EntryManager 2 errors > Unable to locate script class: Unable to compile class: FindCrypt.java
This was fixed by adding import java.io.File; to FindCrypt.java
import java.io.File;
That's interesting, I tested the File.separator edit before pushing to the repo, but I guess something happened.
Thanks for the report.
Upon following the install instructions I got the following error:
This was fixed by adding
import java.io.File;
to FindCrypt.java