You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2021/07/12 20:49:34 UTC

[incubator-nuttx-apps] 01/02: Add support for libtommath

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 178745bba5171e103d517d55873662a157f685c8
Author: Brennan Ashton <ba...@brennanashton.com>
AuthorDate: Sun Jun 6 19:09:54 2021 -0700

    Add support for libtommath
---
 math/.gitignore            |   1 +
 math/Make.defs             |  21 +++++++++
 math/Makefile              |  23 ++++++++++
 math/libtommath/.gitignore |   2 +
 math/libtommath/Kconfig    | 101 ++++++++++++++++++++++++++++++++++++++++
 math/libtommath/Make.defs  |  28 ++++++++++++
 math/libtommath/Makefile   | 112 +++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 288 insertions(+)

diff --git a/math/.gitignore b/math/.gitignore
new file mode 100644
index 0000000..9e1d259
--- /dev/null
+++ b/math/.gitignore
@@ -0,0 +1 @@
+/Kconfig
diff --git a/math/Make.defs b/math/Make.defs
new file mode 100644
index 0000000..36941e9
--- /dev/null
+++ b/math/Make.defs
@@ -0,0 +1,21 @@
+############################################################################
+# apps/math/Make.defs
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.  The
+# ASF licenses this file to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance with the
+# License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+############################################################################
+
+include $(wildcard $(APPDIR)/math/*/Make.defs)
diff --git a/math/Makefile b/math/Makefile
new file mode 100644
index 0000000..de43fcc
--- /dev/null
+++ b/math/Makefile
@@ -0,0 +1,23 @@
+############################################################################
+# apps/math/Makefile
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.  The
+# ASF licenses this file to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance with the
+# License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+############################################################################
+
+MENUDESC = "Math Library Support"
+
+include $(APPDIR)/Directory.mk
diff --git a/math/libtommath/.gitignore b/math/libtommath/.gitignore
new file mode 100644
index 0000000..f162844
--- /dev/null
+++ b/math/libtommath/.gitignore
@@ -0,0 +1,2 @@
+/libtommath
+/*.zip
diff --git a/math/libtommath/Kconfig b/math/libtommath/Kconfig
new file mode 100644
index 0000000..b1d44a7
--- /dev/null
+++ b/math/libtommath/Kconfig
@@ -0,0 +1,101 @@
+#
+# For a description of the syntax of this configuration file,
+# see the file kconfig-language.txt in the NuttX tools repository.
+#
+
+menuconfig MATH_LIBTOMMATH
+	bool "LibTomMath MPI Math Library"
+	default n
+	---help---
+		LibTomMath, a free open source portable number theoretic
+		multiple-precision integer (MPI) library written entirely in C
+
+if MATH_LIBTOMMATH
+
+config LIBTOMMATH_VERSION
+	string "LibTomMath Version"
+	default "1.2.0"
+
+menuconfig LIBTOMMATH_DEMOS
+	bool "LibTomMath MPI Math Library Demos"
+	default n
+	---help---
+		LibTomMath demo and test applications.
+
+if LIBTOMMATH_DEMOS
+
+config LIBTOMMATH_TEST
+        tristate "LibTomMath Test"
+        default n
+        ---help---
+                Demo test application for LibTomMath
+
+if LIBTOMMATH_TEST
+
+config LIBTOMMATH_TEST_PROGNAME
+        string "Test program name"
+        default "tommath_test"
+        ---help---
+                LibTomMath test application name
+
+config LIBTOMMATH_TEST_PRIORITY
+        int "Test application priority"
+        default 100
+
+config LIBTOMMATH_TEST_STACKSIZE
+        int "Test application stack size"
+        default DEFAULT_TASK_STACKSIZE
+
+endif # LIBTOMMATH_TEST
+
+config LIBTOMMATH_OPPONENT_MTEST
+        tristate "LibTomMath MTest"
+        default n
+        ---help---
+                Demo mtest application for LibTomMath
+
+if LIBTOMMATH_OPPONENT_MTEST
+
+config LIBTOMMATH_MTEST_OPPONENT_PROGNAME
+        string "MTest program name"
+        default "tommath_mtest"
+        ---help---
+                LibTomMath mtest application name
+
+config LIBTOMMATH_MTEST_OPPONENT_PRIORITY
+        int "MTest application priority"
+        default 100
+
+config LIBTOMMATH_MTEST_OPPONENT_STACKSIZE
+        int "MTest application stack size"
+        default DEFAULT_TASK_STACKSIZE
+
+endif # LIBTOMMATH_OPPONENT_MTEST
+
+config LIBTOMMATH_TIMING
+        tristate "LibTomMath Timing"
+        default n
+        ---help---
+                Demo timing test application for LibTomMath
+
+if LIBTOMMATH_TIMING
+
+config LIBTOMMATH_TIMING_PROGNAME
+        string "Timing program name"
+        default "tommath_timing"
+        ---help---
+                LibTomMath test application name
+
+config LIBTOMMATH_TIMING_PRIORITY
+        int "Timing application priority"
+        default 100
+
+config LIBTOMMATH_TIMING_STACKSIZE
+        int "Timing application stack size"
+        default DEFAULT_TASK_STACKSIZE
+
+endif # LIBTOMMATH_TIMING
+
+endif # LIBTOMMATH_DEMOS
+
+endif # MATH_LIBTOMMATH
diff --git a/math/libtommath/Make.defs b/math/libtommath/Make.defs
new file mode 100644
index 0000000..1aa6e7b
--- /dev/null
+++ b/math/libtommath/Make.defs
@@ -0,0 +1,28 @@
+############################################################################
+# apps/math/libtommath/Make.defs
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.  The
+# ASF licenses this file to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance with the
+# License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+############################################################################
+
+ifeq ($(CONFIG_MATH_LIBTOMMATH),y)
+CONFIGURED_APPS += $(APPDIR)/math/libtommath
+
+# It allows `<tommath.h>` import.
+
+CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
+CXXFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
+endif
diff --git a/math/libtommath/Makefile b/math/libtommath/Makefile
new file mode 100644
index 0000000..297543e
--- /dev/null
+++ b/math/libtommath/Makefile
@@ -0,0 +1,112 @@
+############################################################################
+# apps/math/libtommath/Makefile
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.  The
+# ASF licenses this file to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance with the
+# License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+############################################################################
+
+include $(APPDIR)/Make.defs
+
+CFLAGS += -Wno-format
+
+CSRCS = bn_cutoffs.c bn_deprecated.c bn_mp_2expt.c bn_mp_abs.c bn_mp_add.c bn_mp_add_d.c bn_mp_addmod.c \
+bn_mp_and.c bn_mp_clamp.c bn_mp_clear.c bn_mp_clear_multi.c bn_mp_cmp.c bn_mp_cmp_d.c bn_mp_cmp_mag.c \
+bn_mp_cnt_lsb.c bn_mp_complement.c bn_mp_copy.c bn_mp_count_bits.c bn_mp_decr.c bn_mp_div.c bn_mp_div_2.c \
+bn_mp_div_2d.c bn_mp_div_3.c bn_mp_div_d.c bn_mp_dr_is_modulus.c bn_mp_dr_reduce.c bn_mp_dr_setup.c \
+bn_mp_error_to_string.c bn_mp_exch.c bn_mp_expt_u32.c bn_mp_exptmod.c bn_mp_exteuclid.c bn_mp_fread.c \
+bn_mp_from_sbin.c bn_mp_from_ubin.c bn_mp_fwrite.c bn_mp_gcd.c bn_mp_get_double.c bn_mp_get_i32.c \
+bn_mp_get_i64.c bn_mp_get_l.c bn_mp_get_ll.c bn_mp_get_mag_u32.c bn_mp_get_mag_u64.c bn_mp_get_mag_ul.c \
+bn_mp_get_mag_ull.c bn_mp_grow.c bn_mp_incr.c bn_mp_init.c bn_mp_init_copy.c bn_mp_init_i32.c \
+bn_mp_init_i64.c bn_mp_init_l.c bn_mp_init_ll.c bn_mp_init_multi.c bn_mp_init_set.c bn_mp_init_size.c \
+bn_mp_init_u32.c bn_mp_init_u64.c bn_mp_init_ul.c bn_mp_init_ull.c bn_mp_invmod.c bn_mp_is_square.c \
+bn_mp_iseven.c bn_mp_isodd.c bn_mp_kronecker.c bn_mp_lcm.c bn_mp_log_u32.c bn_mp_lshd.c bn_mp_mod.c \
+bn_mp_mod_2d.c bn_mp_mod_d.c bn_mp_montgomery_calc_normalization.c bn_mp_montgomery_reduce.c \
+bn_mp_montgomery_setup.c bn_mp_mul.c bn_mp_mul_2.c bn_mp_mul_2d.c bn_mp_mul_d.c bn_mp_mulmod.c bn_mp_neg.c \
+bn_mp_or.c bn_mp_pack.c bn_mp_pack_count.c bn_mp_prime_fermat.c bn_mp_prime_frobenius_underwood.c \
+bn_mp_prime_is_prime.c bn_mp_prime_miller_rabin.c bn_mp_prime_next_prime.c \
+bn_mp_prime_rabin_miller_trials.c bn_mp_prime_rand.c bn_mp_prime_strong_lucas_selfridge.c \
+bn_mp_radix_size.c bn_mp_radix_smap.c bn_mp_rand.c bn_mp_read_radix.c bn_mp_reduce.c bn_mp_reduce_2k.c \
+bn_mp_reduce_2k_l.c bn_mp_reduce_2k_setup.c bn_mp_reduce_2k_setup_l.c bn_mp_reduce_is_2k.c \
+bn_mp_reduce_is_2k_l.c bn_mp_reduce_setup.c bn_mp_root_u32.c bn_mp_rshd.c bn_mp_sbin_size.c bn_mp_set.c \
+bn_mp_set_double.c bn_mp_set_i32.c bn_mp_set_i64.c bn_mp_set_l.c bn_mp_set_ll.c bn_mp_set_u32.c \
+bn_mp_set_u64.c bn_mp_set_ul.c bn_mp_set_ull.c bn_mp_shrink.c bn_mp_signed_rsh.c bn_mp_sqr.c \
+bn_mp_sqrmod.c bn_mp_sqrt.c bn_mp_sqrtmod_prime.c bn_mp_sub.c bn_mp_sub_d.c bn_mp_submod.c \
+bn_mp_to_radix.c bn_mp_to_sbin.c bn_mp_to_ubin.c bn_mp_ubin_size.c bn_mp_unpack.c bn_mp_xor.c bn_mp_zero.c \
+bn_prime_tab.c bn_s_mp_add.c bn_s_mp_balance_mul.c bn_s_mp_exptmod.c bn_s_mp_exptmod_fast.c \
+bn_s_mp_get_bit.c bn_s_mp_invmod_fast.c bn_s_mp_invmod_slow.c bn_s_mp_karatsuba_mul.c \
+bn_s_mp_karatsuba_sqr.c bn_s_mp_montgomery_reduce_fast.c bn_s_mp_mul_digs.c bn_s_mp_mul_digs_fast.c \
+bn_s_mp_mul_high_digs.c bn_s_mp_mul_high_digs_fast.c bn_s_mp_prime_is_divisible.c \
+bn_s_mp_rand_jenkins.c bn_s_mp_rand_platform.c bn_s_mp_reverse.c bn_s_mp_sqr.c bn_s_mp_sqr_fast.c \
+bn_s_mp_sub.c bn_s_mp_toom_mul.c bn_s_mp_toom_sqr.c
+
+VPATH += $(LIBTOMMATH_UNPACKNAME)
+
+ifneq ($(CONFIG_LIBTOMMATH_DEMOS),)
+CSRCS += shared.c
+VPATH += $(LIBTOMMATH_UNPACKNAME)/demo
+
+ifneq ($(CONFIG_LIBTOMMATH_TEST),)
+MAINSRC += test.c
+
+PROGNAME += $(CONFIG_LIBTOMMATH_TEST_PROGNAME)
+PRIORITY += $(CONFIG_LIBTOMMATH_TEST_PRIORITY)
+STACKSIZE += $(CONFIG_LIBTOMMATH_TEST_STACKSIZE)
+endif
+
+ifneq ($(CONFIG_LIBTOMMATH_MTEST_OPPONENT),)
+MAINSRC += mtest_opponent.c
+
+PROGNAME += $(CONFIG_LIBTOMMATH_MTEST_OPPONENT_PROGNAME)
+PRIORITY += $(CONFIG_LIBTOMMATH_MTEST_OPPONENT_PRIORITY)
+STACKSIZE += $(CONFIG_LIBTOMMATH_MTEST_OPPONENT_STACKSIZE)
+endif
+
+ifneq ($(CONFIG_LIBTOMMATH_TIMING),)
+MAINSRC += timing.c
+
+PROGNAME += $(CONFIG_LIBTOMMATH_TIMING_PROGNAME)
+PRIORITY += $(CONFIG_LIBTOMMATH_TIMING_PRIORITY)
+STACKSIZE += $(CONFIG_LIBTOMMATH_TIMING_STACKSIZE)
+endif
+
+endif
+# Set up build configuration and environment
+
+CONFIG_LIBTOMMATH_URL ?= "https://github.com/libtom/libtommath/archive"
+
+LIBTOMMATH_VERSION = $(patsubst "%",%,$(strip $(CONFIG_LIBTOMMATH_VERSION)))
+LIBTOMMATH_ZIP = v$(LIBTOMMATH_VERSION).zip
+
+LIBTOMMATH_UNPACKNAME = libtommath
+UNPACK ?= unzip -o
+
+$(LIBTOMMATH_ZIP):
+	@echo "Downloading: $(LIBTOMMATH_ZIP)"
+	$(Q) curl -O -L $(CONFIG_LIBTOMMATH_URL)/$(LIBTOMMATH_ZIP)
+
+$(LIBTOMMATH_UNPACKNAME): $(LIBTOMMATH_ZIP)
+	@echo "Unpacking: $(LIBTOMMATH_ZIP) -> $(LIBTOMMATH_UNPACKNAME)"
+	$(Q) $(UNPACK) $(LIBTOMMATH_ZIP)
+	$(Q) mv	libtommath-$(LIBTOMMATH_VERSION) $(LIBTOMMATH_UNPACKNAME)
+	$(Q) touch $(LIBTOMMATH_UNPACKNAME)
+
+context:: $(LIBTOMMATH_UNPACKNAME)
+
+distclean::
+	$(call DELDIR, $(LIBTOMMATH_UNPACKNAME))
+	$(call DELFILE, $(LIBTOMMATH_ZIP))
+
+include $(APPDIR)/Application.mk