speed.pod 930 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. =pod
  2. =head1 NAME
  3. speed - test library performance
  4. =head1 SYNOPSIS
  5. B<openssl speed>
  6. [B<-engine id>]
  7. [B<md2>]
  8. [B<mdc2>]
  9. [B<md5>]
  10. [B<hmac>]
  11. [B<sha1>]
  12. [B<rmd160>]
  13. [B<idea-cbc>]
  14. [B<rc2-cbc>]
  15. [B<rc5-cbc>]
  16. [B<bf-cbc>]
  17. [B<des-cbc>]
  18. [B<des-ede3>]
  19. [B<rc4>]
  20. [B<rsa512>]
  21. [B<rsa1024>]
  22. [B<rsa2048>]
  23. [B<rsa4096>]
  24. [B<dsa512>]
  25. [B<dsa1024>]
  26. [B<dsa2048>]
  27. [B<idea>]
  28. [B<rc2>]
  29. [B<des>]
  30. [B<rsa>]
  31. [B<blowfish>]
  32. =head1 DESCRIPTION
  33. This command is used to test the performance of cryptographic algorithms.
  34. =head1 OPTIONS
  35. =over 4
  36. =item B<-engine id>
  37. specifying an engine (by its unique B<id> string) will cause B<speed>
  38. to attempt to obtain a functional reference to the specified engine,
  39. thus initialising it if needed. The engine will then be set as the default
  40. for all available algorithms.
  41. =item B<[zero or more test algorithms]>
  42. If any options are given, B<speed> tests those algorithms, otherwise all of
  43. the above are tested.
  44. =back
  45. =cut