cuda module hashcat - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: cuda module hashcat (/thread-11972.html) |
cuda module hashcat - ysw - 05-13-2024 I want to create a hashcat module Can modules written in the CUDA language also be included in Hashcat? Does it have to be an openCL language? please let me know RE: cuda module hashcat - penguinkeeper - 05-13-2024 OpenCL can be compiled to run in CUDA so if you want it to be added officially, you'll have to have at least OpenCL although you can write CUDA-specific optimisations with "#if defined IS_CUDA" but again, the minimum is OpenCL support because users may use AMD cards too RE: cuda module hashcat - ysw - 05-14-2024 (05-13-2024, 11:36 AM)penguinkeeper Wrote: OpenCL can be compiled to run in CUDA so if you want it to be added officially, you'll have to have at least OpenCL although you can write CUDA-specific optimisations with "#if defined IS_CUDA" but again, the minimum is OpenCL support because users may use AMD cards too oh ok i understand I wanted to ask whether modules developed in the cuda programming language with the cu extension can be loaded into hashcat |