Config.in 627 B

123456789101112131415161718192021222324252627
  1. menu "Configuration"
  2. depends on PACKAGE_dropbear
  3. config DROPBEAR_ECC
  4. bool "Elliptic curve cryptography (ECC)"
  5. default n
  6. help
  7. Enables elliptic curve cryptography (ECC) support in key exchange and public key
  8. authentication.
  9. Key exchange algorithms:
  10. ecdh-sha2-nistp256
  11. ecdh-sha2-nistp384
  12. ecdh-sha2-nistp521
  13. curve25519-sha256@libssh.org
  14. Public key algorithms:
  15. ecdsa-sha2-nistp256
  16. ecdsa-sha2-nistp384
  17. ecdsa-sha2-nistp521
  18. Does not generate ECC host keys by default (ECC key exchange will not be used,
  19. only ECC public key auth).
  20. Increases binary size by about 36 kB (MIPS).
  21. endmenu