Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an OpenCL implementation of the unix crypt(3) function?

Tags:

c

gpu

opencl

crypt

I want to use the unix crypt function in an OpenCL program. Does something like that already exist or will I have to translate it on my own?

like image 931
mae Avatar asked Dec 29 '25 01:12

mae


1 Answers

You've probably found an answer by now, but in case anyone else comes here from a search, John The Ripper is open source and has OpenCL acceleration for several hashing algorithms, including the 3DES used in BSD crypt().

https://github.com/magnumripper/JohnTheRipper/tree/bleeding-jumbo/src/opencl

like image 187
dannysauer Avatar answered Dec 31 '25 17:12

dannysauer