bfs.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // gettsc.inl
  3. //
  4. // gives access to the Pentium's (secret) cycle counter
  5. //
  6. // This software was written by Leonard Janke (janke@unixg.ubc.ca)
  7. // in 1996-7 and is entered, by him, into the public domain.
  8. #if defined(__WATCOMC__)
  9. void GetTSC(unsigned long&);
  10. #pragma aux GetTSC = 0x0f 0x31 "mov [edi], eax" parm [edi] modify [edx eax];
  11. #elif defined(__GNUC__)
  12. inline
  13. void GetTSC(unsigned long& tsc)
  14. {
  15. asm volatile(".byte 15, 49\n\t"
  16. : "=eax" (tsc)
  17. :
  18. : "%edx", "%eax");
  19. }
  20. #elif defined(_MSC_VER)
  21. inline
  22. void GetTSC(unsigned long& tsc)
  23. {
  24. unsigned long a;
  25. __asm _emit 0fh
  26. __asm _emit 31h
  27. __asm mov a, eax;
  28. tsc=a;
  29. }
  30. #endif
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <openssl/blowfish.h>
  34. void main(int argc,char *argv[])
  35. {
  36. BF_KEY key;
  37. unsigned long s1,s2,e1,e2;
  38. unsigned long data[2];
  39. int i,j;
  40. for (j=0; j<6; j++)
  41. {
  42. for (i=0; i<1000; i++) /**/
  43. {
  44. BF_encrypt(&data[0],&key);
  45. GetTSC(s1);
  46. BF_encrypt(&data[0],&key);
  47. BF_encrypt(&data[0],&key);
  48. BF_encrypt(&data[0],&key);
  49. GetTSC(e1);
  50. GetTSC(s2);
  51. BF_encrypt(&data[0],&key);
  52. BF_encrypt(&data[0],&key);
  53. BF_encrypt(&data[0],&key);
  54. BF_encrypt(&data[0],&key);
  55. GetTSC(e2);
  56. BF_encrypt(&data[0],&key);
  57. }
  58. printf("blowfish %d %d (%d)\n",
  59. e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  60. }
  61. }