devcrypto.cnf 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. [devcrypto_sect]
  2. # Leave this alone and configure algorithms with CIPERS/DIGESTS below
  3. default_algorithms = ALL
  4. # Configuration commands:
  5. # Run 'openssl engine -t -c -vv -pre DUMP_INFO devcrypto' to see a
  6. # list of supported algorithms, along with their driver, whether they
  7. # are hw accelerated or not, and the engine's configuration commands.
  8. # USE_SOFTDRIVERS: specifies whether to use software (not accelerated)
  9. # drivers (0=use only accelerated drivers, 1=allow all drivers, 2=use
  10. # if acceleration can't be determined) [default=2]
  11. #USE_SOFTDRIVERS = 2
  12. # CIPHERS: either ALL, NONE, or a comma-separated list of ciphers to
  13. # enable [default=ALL]
  14. # It is recommended to disable the ECB ciphers; in most cases, it will
  15. # only be used for PRNG, in small blocks, where performance is poor,
  16. # and there may be problems with apps forking with open crypto
  17. # contexts, leading to failures. The CBC ciphers work well.
  18. CIPHERS=DES-CBC, DES-EDE3-CBC, AES-128-CBC, AES-192-CBC, AES-256-CBC, \
  19. AES-128-CTR, AES-192-CTR, AES-256-CTR
  20. # DIGESTS: either ALL, NONE, or a comma-separated list of digests to
  21. # enable [default=NONE]
  22. # It is strongly recommended not to enable digests; their performance
  23. # is poor, and there are many cases in which they will not work,
  24. # especially when calling fork with open crypto contexts. Openssh,
  25. # for example, does this, and you may not be able to login.
  26. # Sysupgrade will fail as well. If you're adventurous enough to change
  27. # this, you should change it back to NONE, and reboot before running
  28. # sysupgrade!
  29. DIGESTS = NONE