Advertisement
FrogLegs

Password Hashes

Jan 13th, 2016
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. //part of password cracker
  2. #include <isotream>
  3. #include <string>
  4. #include <fstream>
  5.  
  6. void Hash()
  7. {
  8. string passHash;
  9. cout <<"Enter in password hash: "<<; std::endl;
  10. cin>> passHash; std::endl;
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement