Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Accelerated Cryptographic Algorithms for CPU (sparc64)"
  3. config CRYPTO_DES_SPARC64
  4. tristate "Ciphers: DES and Triple DES EDE, modes: ECB/CBC"
  5. depends on SPARC64
  6. select CRYPTO_ALGAPI
  7. select CRYPTO_LIB_DES
  8. select CRYPTO_SKCIPHER
  9. help
  10. Block cipher: DES (FIPS 46-2) cipher algorithm
  11. Block cipher: Triple DES EDE (FIPS 46-3) cipher algorithm
  12. Length-preserving ciphers: DES with ECB and CBC modes
  13. Length-preserving ciphers: Tripe DES EDE with ECB and CBC modes
  14. Architecture: sparc64
  15. config CRYPTO_CRC32C_SPARC64
  16. tristate "CRC32c"
  17. depends on SPARC64
  18. select CRYPTO_HASH
  19. select CRC32
  20. help
  21. CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)
  22. Architecture: sparc64
  23. config CRYPTO_MD5_SPARC64
  24. tristate "Digests: MD5"
  25. depends on SPARC64
  26. select CRYPTO_MD5
  27. select CRYPTO_HASH
  28. help
  29. MD5 message digest algorithm (RFC1321)
  30. Architecture: sparc64 using crypto instructions, when available
  31. config CRYPTO_SHA1_SPARC64
  32. tristate "Hash functions: SHA-1"
  33. depends on SPARC64
  34. select CRYPTO_SHA1
  35. select CRYPTO_HASH
  36. help
  37. SHA-1 secure hash algorithm (FIPS 180)
  38. Architecture: sparc64
  39. config CRYPTO_SHA256_SPARC64
  40. tristate "Hash functions: SHA-224 and SHA-256"
  41. depends on SPARC64
  42. select CRYPTO_SHA256
  43. select CRYPTO_HASH
  44. help
  45. SHA-224 and SHA-256 secure hash algorithms (FIPS 180)
  46. Architecture: sparc64 using crypto instructions, when available
  47. config CRYPTO_SHA512_SPARC64
  48. tristate "Hash functions: SHA-384 and SHA-512"
  49. depends on SPARC64
  50. select CRYPTO_SHA512
  51. select CRYPTO_HASH
  52. help
  53. SHA-384 and SHA-512 secure hash algorithms (FIPS 180)
  54. Architecture: sparc64 using crypto instructions, when available
  55. config CRYPTO_AES_SPARC64
  56. tristate "Ciphers: AES, modes: ECB, CBC, CTR"
  57. depends on SPARC64
  58. select CRYPTO_SKCIPHER
  59. help
  60. Block ciphers: AES cipher algorithms (FIPS-197)
  61. Length-preseving ciphers: AES with ECB, CBC, and CTR modes
  62. Architecture: sparc64 using crypto instructions
  63. config CRYPTO_CAMELLIA_SPARC64
  64. tristate "Ciphers: Camellia, modes: ECB, CBC"
  65. depends on SPARC64
  66. select CRYPTO_ALGAPI
  67. select CRYPTO_SKCIPHER
  68. help
  69. Block ciphers: Camellia cipher algorithms
  70. Length-preserving ciphers: Camellia with ECB and CBC modes
  71. Architecture: sparc64
  72. endmenu