Kconfig 803 B

1234567891011121314151617181920212223
  1. config BSP_USING_CRC
  2. bool "Enable CRC (CRC-32 0x04C11DB7 Polynomial)"
  3. select RT_USING_HWCRYPTO
  4. select RT_HWCRYPTO_USING_CRC
  5. # "Crypto device frame dose not support above 8-bits granularity"
  6. # "Reserve progress, running well, about 32-bits granularity, such as stm32f1, stm32f4"
  7. depends on (SOC_SERIES_STM32L4 || SOC_SERIES_STM32F0 || SOC_SERIES_STM32F7 || SOC_SERIES_STM32H7)
  8. default n
  9. config BSP_USING_RNG
  10. bool "Enable RNG (Random Number Generator)"
  11. select RT_USING_HWCRYPTO
  12. select RT_HWCRYPTO_USING_RNG
  13. depends on (SOC_SERIES_STM32L4 || SOC_SERIES_STM32F4 || SOC_SERIES_STM32F7 || \
  14. SOC_SERIES_STM32H7)
  15. default n
  16. config BSP_USING_UDID
  17. bool "Enable UDID (Unique Device Identifier)"
  18. select RT_USING_HWCRYPTO
  19. default n