gustavonihei commented on a change in pull request #749:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/749#discussion_r646784839
##########
File path: crypto/libtomcrypt/Kconfig
##########
@@ -0,0 +1,57 @@
+#
+# For a description of the syntax of this configuration file,
+# see the file kconfig-language.txt in the NuttX tools repository.
+#
+
+menuconfig CRYPTO_LIBTOMCRYPT
+ bool "LibTomCrypt CrypographyLibrary"
+ default n
+ select MATH_LIBTOMMATH
+ ---help---
+ LibTomCrypt is a fairly comprehensive, modular and portable
+ cryptographic toolkit that provides developers with a vast array
+ of well known published block ciphers, one-way hash functions,
+ chaining modes, pseudo-random number generators, public key
+ cryptography and a plethora of other routines.
+
+if CRYPTO_LIBTOMCRYPT
+
+config LIBTOMCRYPT_VERSION
+ string "LibTomCrypt Version"
+ default "1.18.2"
+
+menuconfig LIBTOMCRYPT_DEMOS
+ bool "LibTomCrypt Library Demos"
+ default n
+ ---help---
+ LibTomCrypt demo and test applications.
+
+if LIBTOMCRYPT_DEMOS
Review comment:
I believe @btashton let it in a menuconfig in case the other demos from
https://github.com/libtom/libtomcrypt/tree/develop/demos may be included in the
future.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]