Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 545 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 545 Bytes

gpu-based-password-generator

you need the cuda toolkit to compile the code

sudo apt install nvidia-cuda-toolkit -y

to compile the code type this:

nvcc -arch=sm_80 -o passwordGenerator passwordGenerator.cu

if you want to execute the program you need to have a min and max password length for examle

./passwordGenerator 4 12

this will make a password bitween 4 and 12 characters long

if you want the passwords to be safed in a file type this:

./passwordGenerator 4 12 >> passwords.txt