Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. string word = "LOp";
  2. string check = crypt(word, salt);
  3. for(int i = 0;i<5;i++)
  4. {
  5. if (strcmp(check, argv[1])==0)
  6. {
  7. result = true;
  8. break;
  9. }
  10. else
  11. {
  12. printf("%s\n", word);
  13. word = "LOL";
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement