Advertisement
Guest User

bitsliced hardnested 100% keyspace search time

a guest
Apr 21st, 2016
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. ::test::
  2. A) -O3 -mpopcnt -march=native
  3. vs
  4. B) -O3 -mpopcnt -mmmx -msse -msse2
  5.  
  6. solve_bs with wrong uid to force 100% search of keyspace.
  7. the fastest is A with
  8. A) 262501344 ticks.
  9. B) 306866528 ticks.
  10.  
  11.  
  12. gcc -O3 -mpopcnt -march=native -std=c99 solve_bs.c crypto1_bs.c crypto1_bs_crack.c -Icraptev1-v1.0 craptev1-v1.0/craptev1.c crapto1-v3.3/crapto1.c ./solve.so -o solve_bs -lpthread
  13. user@ubuntuvm:~/crypto1_bs$ ./solve_bs craptev1-v1.0/0xcafec0de.txt 0xcafec0df
  14. Initializing BS crypto-1
  15. Using 128-bit bitslices
  16. Bitslicing rollback byte: 1f...
  17. Bitslicing nonces...
  18. Starting 8 threads to test 1418412964 states
  19. Cracking... 115.44%
  20. Cracking... 235.59%
  21. Cracking... 99.48%
  22. Cracking... 271.89%
  23. Cracking... 185.88%
  24. Cracking... 100.00%
  25. Tested 1418412964 states
  26. Time in solver_bs: 262501344 ticks
  27.  
  28.  
  29. user@ubuntuvm:~/crypto1_bs$ gcc -O3 -mpopcnt -mmmx -msse -msse2 -std=c99 solve_bs.c crypto1_bs.c crypto1_bs_crack.c -Icraptev1-v1.0 craptev1-v1.0/craptev1.c crapto1-v3.3/crapto1.c ./solve.so -o solve_bs -lpthread
  30. user@ubuntuvm:~/crypto1_bs$ ./solve_bs craptev1-v1.0/0xcafec0de.txt 0xcafec0dfInitializing BS crypto-1
  31. Using 128-bit bitslices
  32. Bitslicing rollback byte: 1f...
  33. Bitslicing nonces...
  34. Starting 8 threads to test 1418412964 states
  35. Cracking... 115.44%
  36. Cracking... 235.59%
  37. Cracking... 99.48%
  38. Cracking... 271.89%
  39. Cracking... 185.88%
  40. Cracking... 100.00%
  41. Tested 1418412964 states
  42. Time in solver_bs: 306866528 ticks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement